diff options
Diffstat (limited to 'gtk/simple_dialog.c')
-rw-r--r-- | gtk/simple_dialog.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gtk/simple_dialog.c b/gtk/simple_dialog.c index 61269534a2..d0377422d0 100644 --- a/gtk/simple_dialog.c +++ b/gtk/simple_dialog.c @@ -1,7 +1,7 @@ /* simple_dialog.c * Simple message dialog box routines. * - * $Id: simple_dialog.c,v 1.6 2000/08/23 06:56:31 guy Exp $ + * $Id: simple_dialog.c,v 1.7 2000/10/09 06:38:36 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -76,7 +76,7 @@ simple_dialog(gint type, gint *btn_mask, gchar *msg_format, ...) { gchar **icon; /* Main window */ - switch (type) { + switch (type & ~ESD_TYPE_MODAL) { case ESD_TYPE_WARN : icon = icon_excl_xpm; win = dlg_window_new("Ethereal: Warning"); @@ -92,6 +92,9 @@ simple_dialog(gint type, gint *btn_mask, gchar *msg_format, ...) { break; } + if (type & ESD_TYPE_MODAL) + gtk_window_set_modal(GTK_WINDOW(win), TRUE); + gtk_container_border_width(GTK_CONTAINER(win), 7); gtk_object_set_data(GTK_OBJECT(win), bm_key, btn_mask); |