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 | 2f764ea2c2084d04500c42844662fc4caa36f1c3 (patch) | |
tree | 58acd19b3611605b9f45f8e695e07e60216a8afd /lwlib/lwlib-Xaw.c | |
parent | e4d5ad1d90c9601115338369f0c3bcc572d58b6a (diff) | |
download | emacs-2f764ea2c2084d04500c42844662fc4caa36f1c3.tar.gz |
*** empty log message ***
Diffstat (limited to 'lwlib/lwlib-Xaw.c')
-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); |