diff options
author | Wouter Bolsterlee <uws+gnome@xs4all.nl> | 2006-06-16 22:11:22 +0800 |
---|---|---|
committer | Wouter Bolsterlee <wbolster@src.gnome.org> | 2006-06-16 22:11:22 +0800 |
commit | 4f202c8ac7c2a94021a0e65e79a7ca78eb8c02e5 (patch) | |
tree | e25a4a0c358b23e43e6fa1a107fec624d1987614 | |
parent | 93f45cd0fec4620848b351161f9bc403ead524c2 (diff) | |
download | gsoc2013-epiphany-4f202c8ac7c2a94021a0e65e79a7ca78eb8c02e5.tar gsoc2013-epiphany-4f202c8ac7c2a94021a0e65e79a7ca78eb8c02e5.tar.gz gsoc2013-epiphany-4f202c8ac7c2a94021a0e65e79a7ca78eb8c02e5.tar.bz2 gsoc2013-epiphany-4f202c8ac7c2a94021a0e65e79a7ca78eb8c02e5.tar.lz gsoc2013-epiphany-4f202c8ac7c2a94021a0e65e79a7ca78eb8c02e5.tar.xz gsoc2013-epiphany-4f202c8ac7c2a94021a0e65e79a7ca78eb8c02e5.tar.zst gsoc2013-epiphany-4f202c8ac7c2a94021a0e65e79a7ca78eb8c02e5.zip |
Make the crash recovery dialog appear on the taskbar. Fixes bug #345010.
2006-06-16 Wouter Bolsterlee <uws+gnome@xs4all.nl>
* src/ephy-session.c: (session_command_autoresume):
Make the crash recovery dialog appear on the taskbar.
Fixes bug #345010.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/ephy-session.c | 1 |
2 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,9 @@ +2006-06-16 Wouter Bolsterlee <uws+gnome@xs4all.nl> + + * src/ephy-session.c: (session_command_autoresume): + Make the crash recovery dialog appear on the taskbar. + Fixes bug #345010. + 2006-06-16 Christian Persch <chpe@cvs.gnome.org> * data/default-prefs-common.js: diff --git a/src/ephy-session.c b/src/ephy-session.c index 3b8ccaf7f..f3bd78430 100644 --- a/src/ephy-session.c +++ b/src/ephy-session.c @@ -619,6 +619,7 @@ session_command_autoresume (EphySession *session, gtk_window_set_title (GTK_WINDOW (dialog), _("Crash Recovery")); gtk_window_set_icon_name (GTK_WINDOW (dialog), "web-browser"); gtk_window_set_position (GTK_WINDOW (dialog), GTK_WIN_POS_CENTER); + gtk_window_set_skip_taskbar_hint (GTK_WINDOW (dialog), FALSE); gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_ACCEPT); g_signal_connect (dialog, "response", |