diff options
author | Fred Pierresteguy <F.Pierresteguy@frcl.bull.fr> | 1994-04-01 08:25:12 +0000 |
---|---|---|
committer | Fred Pierresteguy <F.Pierresteguy@frcl.bull.fr> | 1994-04-01 08:25:12 +0000 |
commit | dc49df96e3c6145656e417df28a68116bc6d3355 (patch) | |
tree | 3c1b9b47c10b9af9171cefdcd059665ce05541f5 /lwlib | |
parent | ffd57920a371da13e5e41f0df59ae5ed3446849c (diff) | |
download | emacs-dc49df96e3c6145656e417df28a68116bc6d3355.tar.gz |
*** empty log message ***
Diffstat (limited to 'lwlib')
-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 ac = 0; XtSetArg (av[ac], XtNtitle, shell_title); ac++; XtSetArg (av[ac], XtNallowShellResize, True); ac++; + + /* Don't allow any geometry request from the user. */ + XtSetArg (av[ac], XtNgeometry, 0); ac++; + shell = XtCreatePopupShell ("dialog", transientShellWidgetClass, parent, av, ac); XtOverrideTranslations (shell, override); |