Use set_rules_hint(True) in the installed plugins treeview

This commit is contained in:
Denis Fomin 2011-11-26 22:52:04 +03:00
parent b9f8f67ce5
commit 4564c2c558
1 changed files with 1 additions and 0 deletions

View File

@ -62,6 +62,7 @@ class PluginsWindow(object):
self.installed_plugins_model = gtk.ListStore(gobject.TYPE_PYOBJECT,
gobject.TYPE_STRING, gobject.TYPE_BOOLEAN)
self.installed_plugins_treeview.set_model(self.installed_plugins_model)
self.installed_plugins_treeview.set_rules_hint(True)
renderer = gtk.CellRendererText()
col = gtk.TreeViewColumn(_('Plugin'), renderer, text=1)