aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog8
-rw-r--r--src/bookmarks/ephy-bookmarks-editor.c2
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index e161285a4..2da0c9272 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2003-02-10 James Willcox <jwillcox@gnome.org>
+
+ * src/bookmarks/ephy-bookmarks-editor.c:
+ (ephy_bookmarks_editor_dispose):
+
+ Make the bookmarks editor properly select the "All" keyword if
+ it was the last keyword selected.
+
2003-02-10 Marco Pesenti Gritti <marco@it.gnome.org>
* lib/widgets/ephy-toolbars-group.c:
diff --git a/src/bookmarks/ephy-bookmarks-editor.c b/src/bookmarks/ephy-bookmarks-editor.c
index 93a4123cc..3f106fa4b 100644
--- a/src/bookmarks/ephy-bookmarks-editor.c
+++ b/src/bookmarks/ephy-bookmarks-editor.c
@@ -148,7 +148,7 @@ ephy_bookmarks_editor_dispose (GObject *object)
}
selected_id = ephy_node_get_id (EPHY_NODE (selection->data));
- if (selected_id > 0)
+ if (selected_id >= 0)
{
selected_id_str = g_strdup_printf ("%ld", selected_id);
eel_gconf_set_string (CONF_BOOKMARKS_SELECTED_NODE,