summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRodrigo Moya <rodrigo@novell.com>2006-03-23 15:19:43 +0000
committerRodrigo Moya <rodrigo@src.gnome.org>2006-03-23 15:19:43 +0000
commitbc788085589b4060c4b61dcb44707e03df980a85 (patch)
tree027f9faf3d50604cb676e5d652a44dc1f194fe52
parentd65761b2502feaffbffa050cef03e862c89a6116 (diff)
downloadgnome-control-center-bc788085589b4060c4b61dcb44707e03df980a85.tar.gz
use gtk_dialog_run, we want the dialog to show up for more than less than
2006-93-23 Rodrigo Moya <rodrigo@novell.com> * activate-settings-daemon.c (popup_error_message): use gtk_dialog_run, we want the dialog to show up for more than less than a second.
-rw-r--r--capplets/common/ChangeLog5
-rw-r--r--capplets/common/activate-settings-daemon.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/capplets/common/ChangeLog b/capplets/common/ChangeLog
index 8e3bdf821..67df7b9eb 100644
--- a/capplets/common/ChangeLog
+++ b/capplets/common/ChangeLog
@@ -1,3 +1,8 @@
+2006-93-23 Rodrigo Moya <rodrigo@novell.com>
+
+ * activate-settings-daemon.c (popup_error_message): use gtk_dialog_run,
+ we want the dialog to show up for more than less than a second.
+
2006-01-23 Thomas Wood <thos@gnome.org>
* file-transfer-dialog.c: (create_titled_label): Prevent a
diff --git a/capplets/common/activate-settings-daemon.c b/capplets/common/activate-settings-daemon.c
index 186eb82a7..a990cfd18 100644
--- a/capplets/common/activate-settings-daemon.c
+++ b/capplets/common/activate-settings-daemon.c
@@ -20,7 +20,7 @@ static void popup_error_message (void)
"indicate a problem with Bonobo, or a non-GNOME (e.g. KDE) settings manager may already "
"be active and conflicting with the GNOME settings manager."));
- gtk_widget_show (dialog);
+ gtk_dialog_run (GTK_DIALOG (dialog));
gtk_widget_destroy (dialog);
}