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
This commit is contained in:
Ettore Perazzoli
2001-07-24 01:33:43 +00:00
parent 13c2162227
commit 8dd7c75d29
2 changed files with 13 additions and 7 deletions
+8
View File
@@ -1,3 +1,11 @@
2001-07-23 Ettore Perazzoli <ettore@ximian.com>
* 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.
2001-07-23 Ettore Perazzoli <ettore@ximian.com>
* e-task-widget.c (e_task_widget_construct): Uhm, set the usize to
+5 -7
View File
@@ -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);
}