diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-12-14 00:48:07 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2011-12-14 00:48:07 +0800 |
commit | 034accdf3ba5426db5cab0a6082c7628324e6720 (patch) | |
tree | df08fb912046d6ee74f548be09c594b1aea2ca06 | |
parent | c9ba92156c91d1e96df18a42c39ec07d15bb7517 (diff) | |
download | gsoc2013-evolution-034accdf3ba5426db5cab0a6082c7628324e6720.tar.gz gsoc2013-evolution-034accdf3ba5426db5cab0a6082c7628324e6720.tar.zst gsoc2013-evolution-034accdf3ba5426db5cab0a6082c7628324e6720.zip |
EMSubscriptionEditor: Use alternating row colors.
The deeper the folder the greater the distance between the checkbox and
the folder name. Can get difficult to match them on a blank background.
-rw-r--r-- | mail/em-subscription-editor.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mail/em-subscription-editor.c b/mail/em-subscription-editor.c index 0962492c8c..76edaa5e5f 100644 --- a/mail/em-subscription-editor.c +++ b/mail/em-subscription-editor.c @@ -1365,6 +1365,7 @@ subscription_editor_add_store (EMSubscriptionEditor *editor, widget = gtk_tree_view_new_with_model (GTK_TREE_MODEL (tree_store)); gtk_tree_view_set_enable_search (GTK_TREE_VIEW (widget), TRUE); gtk_tree_view_set_headers_visible (GTK_TREE_VIEW (widget), FALSE); + gtk_tree_view_set_rules_hint (GTK_TREE_VIEW (widget), TRUE); gtk_tree_view_set_search_column ( GTK_TREE_VIEW (widget), COL_FOLDER_NAME); gtk_container_add (GTK_CONTAINER (container), widget); |