Fix #1349 force a theme style with expander-size = 15 to show entries in the sidebar properly.

This commit is contained in:
Andrew Resch 2010-10-15 19:31:36 -07:00
parent ae6837c88c
commit c97f809bdc
1 changed files with 4 additions and 1 deletions

View File

@ -123,6 +123,9 @@ class FilterTreeView(component.Component):
self.label_view.set_show_expanders(True)
self.label_view.set_headers_visible(False)
self.label_view.set_level_indentation(-35)
# Force the theme to use an expander-size of 15 so that we don't cut out
# entries due to our indentation hack.
gtk.rc_parse_string('style "treeview-style" { GtkTreeView::expander-size = 15 } class "GtkTreeView" style "treeview-style"')
self.label_view.set_model(self.treestore)
self.label_view.get_selection().connect("changed", self.on_selection_changed)