Merge pull request #454 from lopsided98/tree-scroll-fix

Fix device tree GUI hierarchy (Closes #453).
This commit is contained in:
Peter Wu 2018-08-12 12:22:50 +02:00 committed by GitHub
commit 51375d4510
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -300,7 +300,7 @@ def _create_window_layout():
tree_panel = Gtk.Box.new(Gtk.Orientation.VERTICAL, 0) tree_panel = Gtk.Box.new(Gtk.Orientation.VERTICAL, 0)
tree_panel.set_homogeneous(False) tree_panel.set_homogeneous(False)
tree_panel.pack_start(_tree, True, True, 0) tree_panel.pack_start(tree_scroll, True, True, 0)
tree_panel.pack_start(_details, False, False, 0) tree_panel.pack_start(_details, False, False, 0)
panel = Gtk.Box.new(Gtk.Orientation.HORIZONTAL, 16) panel = Gtk.Box.new(Gtk.Orientation.HORIZONTAL, 16)