diff options
-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); } |