>From 7d4a8f9679fffddf1263f5bfc1f603c80f235aa1 Mon Sep 17 00:00:00 2001 From: Christian Hergert Date: Thu, 24 Mar 2011 20:04:25 -0700 Subject: [PATCH 07/10] Enable rules hint on plugins list When many plugins are available, lack of rules hinting can make it hard to focus on a particular line. This enables the hint for themes that wish to support it. Signed-off-by: Christian Hergert --- libanjuta/anjuta-plugin-manager.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/libanjuta/anjuta-plugin-manager.c b/libanjuta/anjuta-plugin-manager.c index 5d53489..003d78c 100644 --- a/libanjuta/anjuta-plugin-manager.c +++ b/libanjuta/anjuta-plugin-manager.c @@ -1166,6 +1166,7 @@ anjuta_plugin_manager_get_plugins_page (AnjutaPluginManager *plugin_manager) gtk_box_pack_start (GTK_BOX (vbox), scrolled, TRUE, TRUE, 0); tree = create_plugin_tree (); + gtk_tree_view_set_rules_hint (GTK_TREE_VIEW (tree), TRUE); gtk_tree_view_set_headers_visible (GTK_TREE_VIEW (tree), FALSE); store = GTK_LIST_STORE (gtk_tree_view_get_model (GTK_TREE_VIEW (tree))); -- 1.7.4.1