From 8dd7c75d2940282ec0bb41338e2ea24f5b799c98 Mon Sep 17 00:00:00 2001 From: Ettore Perazzoli Date: Tue, 24 Jul 2001 01:33:43 +0000 Subject: Only show the warning dialog instead of using `gnome_dialog_run()' so it * main.c (development_warning): Only show the warning dialog instead of using `gnome_dialog_run()' so it is not modal. Modal would be nice, but unfortunately it works bad with Bonobo. Plus Sawfish doesn't like to keep the modal dialog on top, so it gets very confusing for users. svn path=/trunk/; revision=11331 --- shell/main.c | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'shell/main.c') diff --git a/shell/main.c b/shell/main.c index 45d3fb278e..ca27b693b8 100644 --- a/shell/main.c +++ b/shell/main.c @@ -77,10 +77,8 @@ development_warning (void) GtkWidget *label, *warning_dialog; int ret; - warning_dialog = gnome_dialog_new ( - "Evolution" VERSION, - GNOME_STOCK_BUTTON_OK, - NULL); + warning_dialog = gnome_dialog_new ("Evolution " VERSION, GNOME_STOCK_BUTTON_OK, NULL); + label = gtk_label_new ( /* xgettext:no-c-format */ _("Hi. Thanks for taking the time to download this preview release\n" @@ -114,9 +112,9 @@ development_warning (void) gtk_box_pack_start (GTK_BOX (GNOME_DIALOG (warning_dialog)->vbox), label, TRUE, TRUE, 0); - ret = gnome_dialog_run (GNOME_DIALOG (warning_dialog)); - if (ret != -1) - gtk_object_destroy (GTK_OBJECT (warning_dialog)); + gnome_dialog_close_hides (GNOME_DIALOG (warning_dialog), FALSE); + + gtk_widget_show (warning_dialog); } -- cgit v1.2.3