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:
@@ -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
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user