diff options
| author | Fred Pierresteguy | 1994-04-01 08:25:12 +0000 |
|---|---|---|
| committer | Fred Pierresteguy | 1994-04-01 08:25:12 +0000 |
| commit | dc49df96e3c6145656e417df28a68116bc6d3355 (patch) | |
| tree | 3c1b9b47c10b9af9171cefdcd059665ce05541f5 | |
| parent | ffd57920a371da13e5e41f0df59ae5ed3446849c (diff) | |
| download | emacs-dc49df96e3c6145656e417df28a68116bc6d3355.tar.gz emacs-dc49df96e3c6145656e417df28a68116bc6d3355.zip | |
*** empty log message ***
| -rw-r--r-- | lwlib/lwlib-Xaw.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lwlib/lwlib-Xaw.c b/lwlib/lwlib-Xaw.c index 76628ab8a0c..99bb5118838 100644 --- a/lwlib/lwlib-Xaw.c +++ b/lwlib/lwlib-Xaw.c | |||
| @@ -299,6 +299,10 @@ make_dialog (name, parent, pop_up_p, shell_title, icon_name, text_input_slot, ra | |||
| 299 | ac = 0; | 299 | ac = 0; |
| 300 | XtSetArg (av[ac], XtNtitle, shell_title); ac++; | 300 | XtSetArg (av[ac], XtNtitle, shell_title); ac++; |
| 301 | XtSetArg (av[ac], XtNallowShellResize, True); ac++; | 301 | XtSetArg (av[ac], XtNallowShellResize, True); ac++; |
| 302 | |||
| 303 | /* Don't allow any geometry request from the user. */ | ||
| 304 | XtSetArg (av[ac], XtNgeometry, 0); ac++; | ||
| 305 | |||
| 302 | shell = XtCreatePopupShell ("dialog", transientShellWidgetClass, | 306 | shell = XtCreatePopupShell ("dialog", transientShellWidgetClass, |
| 303 | parent, av, ac); | 307 | parent, av, ac); |
| 304 | XtOverrideTranslations (shell, override); | 308 | XtOverrideTranslations (shell, override); |