diff options
author | Marco Pesenti Gritti <marco@gnome.org> | 2004-02-29 04:41:08 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <marco@src.gnome.org> | 2004-02-29 04:41:08 +0800 |
commit | 23629b0702936f71438b25301426a57554267090 (patch) | |
tree | 5824ebf70d6ce96975785510331f83d9efe0ca40 /src/bookmarks/ephy-bookmarks.c | |
parent | 3c50869157c2b9048a8059bb57d1ceb6d743249b (diff) | |
download | gsoc2013-epiphany-23629b0702936f71438b25301426a57554267090.tar gsoc2013-epiphany-23629b0702936f71438b25301426a57554267090.tar.gz gsoc2013-epiphany-23629b0702936f71438b25301426a57554267090.tar.bz2 gsoc2013-epiphany-23629b0702936f71438b25301426a57554267090.tar.lz gsoc2013-epiphany-23629b0702936f71438b25301426a57554267090.tar.xz gsoc2013-epiphany-23629b0702936f71438b25301426a57554267090.tar.zst gsoc2013-epiphany-23629b0702936f71438b25301426a57554267090.zip |
fix typo that was causing categorized bookmarks to go in the uncategorized
2004-02-28 Marco Pesenti Gritti <marco@gnome.org>
* src/bookmarks/ephy-bookmarks.c: (topics_removed_cb):
fix typo that was causing categorized bookmarks to
go in the uncategorized topic (Bug #135702)
Diffstat (limited to 'src/bookmarks/ephy-bookmarks.c')
-rw-r--r-- | src/bookmarks/ephy-bookmarks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bookmarks/ephy-bookmarks.c b/src/bookmarks/ephy-bookmarks.c index 189b57423..f15e20ccd 100644 --- a/src/bookmarks/ephy-bookmarks.c +++ b/src/bookmarks/ephy-bookmarks.c @@ -555,7 +555,7 @@ topics_removed_cb (EphyNode *node, kid = g_ptr_array_index (children, i); - if (bookmark_is_categorized (eb, kid) && + if (!bookmark_is_categorized (eb, kid) && !ephy_node_has_child (eb->priv->notcategorized, kid)) { ephy_node_add_child |