diff options
author | Christian Neumair <cneumair@src.gnome.org> | 2004-08-09 00:39:53 +0800 |
---|---|---|
committer | Christian Neumair <cneumair@src.gnome.org> | 2004-08-09 00:39:53 +0800 |
commit | 8f30d82289466a8983b48d1a269f2f6779711772 (patch) | |
tree | 73891a2065327363a379fd27f9019fdc38082c36 | |
parent | 98ce8dd3c3b2718296df130a0ef4b445fc9a4343 (diff) | |
download | gsoc2013-epiphany-8f30d82289466a8983b48d1a269f2f6779711772.tar gsoc2013-epiphany-8f30d82289466a8983b48d1a269f2f6779711772.tar.gz gsoc2013-epiphany-8f30d82289466a8983b48d1a269f2f6779711772.tar.bz2 gsoc2013-epiphany-8f30d82289466a8983b48d1a269f2f6779711772.tar.lz gsoc2013-epiphany-8f30d82289466a8983b48d1a269f2f6779711772.tar.xz gsoc2013-epiphany-8f30d82289466a8983b48d1a269f2f6779711772.tar.zst gsoc2013-epiphany-8f30d82289466a8983b48d1a269f2f6779711772.zip |
Sort topics in topic selector by name. Fixes #149639.
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | src/bookmarks/ephy-topics-selector.c | 2 |
2 files changed, 9 insertions, 0 deletions
@@ -1,3 +1,10 @@ +2004-08-08 Christian Neumair <chris@gnome-de.org> + + * src/bookmarks/ephy-topics-selector.c: + (ephy_topics_selector_constructor): + + Sort topics by name. Fixes #149639. + 2004-08-08 Christian Persch <chpe@cvs.gnome.org> * doc/reference/Makefile.am: diff --git a/src/bookmarks/ephy-topics-selector.c b/src/bookmarks/ephy-topics-selector.c index 1a100f5a2..c9ebdd2e2 100644 --- a/src/bookmarks/ephy-topics-selector.c +++ b/src/bookmarks/ephy-topics-selector.c @@ -196,6 +196,8 @@ ephy_topics_selector_constructor (GType type, guint n_construct_properties, EPHY_NODE_VIEW_SHOW_PRIORITY | EPHY_NODE_VIEW_EDITABLE | EPHY_NODE_VIEW_SEARCHABLE, NULL); + ephy_node_view_set_sort (EPHY_NODE_VIEW (selector), G_TYPE_STRING, + EPHY_NODE_KEYWORD_PROP_NAME, GTK_SORT_ASCENDING); return object; } |