place the keybinding editor inside a gtk.ScrolledWindow for the pixel-poor
This commit is contained in:
parent
eb39ca548a
commit
eba60f3fcc
|
@ -382,7 +382,10 @@ class ProfileEditor:
|
||||||
|
|
||||||
self.treeview.append_column(col)
|
self.treeview.append_column(col)
|
||||||
|
|
||||||
return (self.treeview)
|
scrollwin = gtk.ScrolledWindow ()
|
||||||
|
scrollwin.set_policy (gtk.POLICY_NEVER, gtk.POLICY_AUTOMATIC)
|
||||||
|
scrollwin.add (self.treeview)
|
||||||
|
return (scrollwin)
|
||||||
|
|
||||||
def edited (self, obj, path, key, mods, code):
|
def edited (self, obj, path, key, mods, code):
|
||||||
iter = self.liststore.get_iter_from_string(path)
|
iter = self.liststore.get_iter_from_string(path)
|
||||||
|
|
Loading…
Reference in New Issue