fixed sizing of details panel

This commit is contained in:
Daniel Pavel 2013-06-20 13:41:05 +02:00
parent a2995ed3c5
commit 4e3fccb009
1 changed files with 2 additions and 1 deletions

View File

@ -275,8 +275,9 @@ def _create_window_layout():
_tree.get_selection().connect('changed', _device_selected)
tree_panel = Gtk.Box.new(Gtk.Orientation.VERTICAL, 4)
tree_panel.set_homogeneous(False)
tree_panel.pack_start(_tree, True, True, 0)
tree_panel.pack_start(_details, True, True, 0)
tree_panel.pack_start(_details, False, False, 0)
panel = Gtk.Box.new(Gtk.Orientation.HORIZONTAL, 16)
panel.pack_start(tree_panel, False, False, 0)