diff options
author | James Willcox <jwillcox@gnome.org> | 2003-02-11 07:24:41 +0800 |
---|---|---|
committer | James Willcox <jwillcox@src.gnome.org> | 2003-02-11 07:24:41 +0800 |
commit | c24243f0891977fd37ab4a19ecbbd87db01a9c59 (patch) | |
tree | db57d561d8f7817df278aefba8abd3ca8d3e4f09 /src/bookmarks/ephy-bookmarks-editor.c | |
parent | c4464cadae6923fc42bfa205e5c701cf5eb0277d (diff) | |
download | gsoc2013-epiphany-c24243f0891977fd37ab4a19ecbbd87db01a9c59.tar gsoc2013-epiphany-c24243f0891977fd37ab4a19ecbbd87db01a9c59.tar.gz gsoc2013-epiphany-c24243f0891977fd37ab4a19ecbbd87db01a9c59.tar.bz2 gsoc2013-epiphany-c24243f0891977fd37ab4a19ecbbd87db01a9c59.tar.lz gsoc2013-epiphany-c24243f0891977fd37ab4a19ecbbd87db01a9c59.tar.xz gsoc2013-epiphany-c24243f0891977fd37ab4a19ecbbd87db01a9c59.tar.zst gsoc2013-epiphany-c24243f0891977fd37ab4a19ecbbd87db01a9c59.zip |
Make the bookmarks editor properly select the "All" keyword if it was the
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.
Diffstat (limited to 'src/bookmarks/ephy-bookmarks-editor.c')
-rw-r--r-- | src/bookmarks/ephy-bookmarks-editor.c | 2 |
1 files changed, 1 insertions, 1 deletions
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, |