summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorEduardo Silva <edsiper@gmail.com>2011-05-19 08:37:01 -0400
committerMichal Marek <mmarek@suse.cz>2011-05-24 15:41:51 +0200
commit2626e674021c28250874a68f47b0f4759fcf63db (patch)
treee63987ee30df461e71de147f3bc55a7659306f79 /scripts
parent76ce94a37187327c09343a98726ccea81f9eab54 (diff)
downloadop-kernel-dev-2626e674021c28250874a68f47b0f4759fcf63db.zip
op-kernel-dev-2626e674021c28250874a68f47b0f4759fcf63db.tar.gz
gconfig: enable rules hint for main treeviews
Due to the large amount of rows in the treeviews, is difficult to match columns with rows, setting the rules hint to 'true' allows the treeview to alternate background colors in the rows making the data more readable. Signed-off-by: Eduardo Silva <edsiper@gmail.com> Tested-by: Randy Dunlap <randy.dunlap@oracle.com> Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/kconfig/gconf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/kconfig/gconf.c b/scripts/kconfig/gconf.c
index 45589616..0c8db7d 100644
--- a/scripts/kconfig/gconf.c
+++ b/scripts/kconfig/gconf.c
@@ -253,7 +253,7 @@ void init_left_tree(void)
gtk_tree_view_set_model(view, model1);
gtk_tree_view_set_headers_visible(view, TRUE);
- gtk_tree_view_set_rules_hint(view, FALSE);
+ gtk_tree_view_set_rules_hint(view, TRUE);
column = gtk_tree_view_column_new();
gtk_tree_view_append_column(view, column);
@@ -298,7 +298,7 @@ void init_right_tree(void)
gtk_tree_view_set_model(view, model2);
gtk_tree_view_set_headers_visible(view, TRUE);
- gtk_tree_view_set_rules_hint(view, FALSE);
+ gtk_tree_view_set_rules_hint(view, TRUE);
column = gtk_tree_view_column_new();
gtk_tree_view_append_column(view, column);
OpenPOWER on IntegriCloud