diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/ephy-session.c | 2 |
2 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2005-02-23 Carlos Garnacho Parro <carlos@gnome.org> + + * src/ephy-session.c: don't activate startup notification with the + "previous session has crashed" dialog + 2005-02-23 Christian Persch <chpe@cvs.gnome.org> * lib/egg/egg-editable-toolbar.c: (update_fixed): diff --git a/src/ephy-session.c b/src/ephy-session.c index 3d1781bc3..4dbdb4f18 100644 --- a/src/ephy-session.c +++ b/src/ephy-session.c @@ -406,7 +406,9 @@ offer_to_resume (EphySession *session, ephy_gui_window_update_user_time (session->priv->resume_dialog, user_time); + gtk_window_set_auto_startup_notification (FALSE); response = gtk_dialog_run (GTK_DIALOG (dialog)); + gtk_window_set_auto_startup_notification (TRUE); gtk_widget_destroy (dialog); |