diff options
author | Xan Lopez <xan@src.gnome.org> | 2003-02-26 20:21:43 +0800 |
---|---|---|
committer | Xan Lopez <xan@src.gnome.org> | 2003-02-26 20:21:43 +0800 |
commit | 534e068d3e702d23643f8a0bc7d84e3b3e0b990f (patch) | |
tree | 5bb2e2c6e264c409942fce697b3d814ba451cdba /src/bookmarks/ephy-bookmarks.c | |
parent | db6e87f093cbd92f35b65f8b9875c07e01d3be30 (diff) | |
download | gsoc2013-epiphany-534e068d3e702d23643f8a0bc7d84e3b3e0b990f.tar gsoc2013-epiphany-534e068d3e702d23643f8a0bc7d84e3b3e0b990f.tar.gz gsoc2013-epiphany-534e068d3e702d23643f8a0bc7d84e3b3e0b990f.tar.bz2 gsoc2013-epiphany-534e068d3e702d23643f8a0bc7d84e3b3e0b990f.tar.lz gsoc2013-epiphany-534e068d3e702d23643f8a0bc7d84e3b3e0b990f.tar.xz gsoc2013-epiphany-534e068d3e702d23643f8a0bc7d84e3b3e0b990f.tar.zst gsoc2013-epiphany-534e068d3e702d23643f8a0bc7d84e3b3e0b990f.zip |
BE auto sort.
BE auto sort.
Diffstat (limited to 'src/bookmarks/ephy-bookmarks.c')
-rw-r--r-- | src/bookmarks/ephy-bookmarks.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/bookmarks/ephy-bookmarks.c b/src/bookmarks/ephy-bookmarks.c index 3b45599f6..8425ad92a 100644 --- a/src/bookmarks/ephy-bookmarks.c +++ b/src/bookmarks/ephy-bookmarks.c @@ -481,6 +481,12 @@ ephy_bookmarks_init (EphyBookmarks *eb) /* Keywords */ eb->priv->keywords = ephy_node_new_with_id (KEYWORDS_NODE_ID); ephy_node_ref (eb->priv->keywords); + g_value_init (&value, G_TYPE_BOOLEAN); + g_value_set_boolean (&value, TRUE); + ephy_node_set_property (eb->priv->bookmarks, + EPHY_NODE_KEYWORD_PROP_ALL_PRIORITY, + &value); + g_value_unset (&value); ephy_node_add_child (eb->priv->keywords, eb->priv->bookmarks); |