diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-08-06 21:38:03 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-08-06 21:38:03 +0800 |
commit | b673045cc84b8a615bded4211ed25e64087dbb21 (patch) | |
tree | a1531192be20ba2232eeadc9fab28d4a2a6a8122 | |
parent | e6aaa300c0e02006bc6f2cab822f56471718e934 (diff) | |
download | gsoc2013-epiphany-b673045cc84b8a615bded4211ed25e64087dbb21.tar gsoc2013-epiphany-b673045cc84b8a615bded4211ed25e64087dbb21.tar.gz gsoc2013-epiphany-b673045cc84b8a615bded4211ed25e64087dbb21.tar.bz2 gsoc2013-epiphany-b673045cc84b8a615bded4211ed25e64087dbb21.tar.lz gsoc2013-epiphany-b673045cc84b8a615bded4211ed25e64087dbb21.tar.xz gsoc2013-epiphany-b673045cc84b8a615bded4211ed25e64087dbb21.tar.zst gsoc2013-epiphany-b673045cc84b8a615bded4211ed25e64087dbb21.zip |
Fix restoring the history window on resume.
2004-08-06 Christian Persch <chpe@cvs.gnome.org>
* src/ephy-session.c: (ephy_session_load):
Fix restoring the history window on resume.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/ephy-session.c | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,5 +1,11 @@ 2004-08-06 Christian Persch <chpe@cvs.gnome.org> + * src/ephy-session.c: (ephy_session_load): + + Fix restoring the history window on resume. + +2004-08-06 Christian Persch <chpe@cvs.gnome.org> + * configure.in: Remove 1.7{a,b,rc*}. diff --git a/src/ephy-session.c b/src/ephy-session.c index 3bf4d46f8..f97db5be0 100644 --- a/src/ephy-session.c +++ b/src/ephy-session.c @@ -679,7 +679,7 @@ ephy_session_load (EphySession *session, } else if (id && xmlStrEqual (HISTORY_WINDOW_ID, id)) { - if (eel_gconf_get_boolean (CONF_LOCKDOWN_DISABLE_HISTORY)) + if (!eel_gconf_get_boolean (CONF_LOCKDOWN_DISABLE_HISTORY)) { widget = ephy_shell_get_history_window (ephy_shell); } |