]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
gconfig: enable rules hint for main treeviews
authorEduardo Silva <edsiper@gmail.com>
Thu, 19 May 2011 12:37:01 +0000 (08:37 -0400)
committerMichal Marek <mmarek@suse.cz>
Tue, 24 May 2011 13:41:51 +0000 (15:41 +0200)
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>
scripts/kconfig/gconf.c

index 455896164d72ccdbe327b2b5914b9561bece6c17..0c8db7d63c2000d712d0127e3384724f7921f62d 100644 (file)
@@ -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);