Path: utzoo!attcan!uunet!cs.utexas.edu!tut.cis.ohio-state.edu!bloom-beacon!EXPO.LCS.MIT.EDU!kit From: kit@EXPO.LCS.MIT.EDU (Chris D. Peterson) Newsgroups: comp.windows.x Subject: Re: dialog, label, and transient shell widget problems Message-ID: <8904281451.AA03585@expo.lcs.mit.edu> Date: 28 Apr 89 14:51:25 GMT References: <3025@daisy.UUCP> Sender: daemon@bloom-beacon.MIT.EDU Organization: The Internet Lines: 15 > I redid it using a label and command widgets in a form. That worked > fine, except that the label widget doesn't resize... > Actually, the behaviour I'm seeking is resizing the label widget when the > label text is changed. I changed the label to a large one (more > characters), but the label widget remained the same size. The problem is that the Form is denying geometry requests from the label. This is sometimes very useful, but not what you want. There is a constraint resource in the Form widget called XtNresizable. Set it to TRUE. Chris