Skip to content

Commit

Permalink
Fix vertical expansion of family tree manager list
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick-Hall committed Aug 20, 2023
1 parent 7b2a1bc commit d7f6db0
Show file tree
Hide file tree
Showing 2 changed files with 116 additions and 109 deletions.
5 changes: 2 additions & 3 deletions gramps/gui/dbman.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,10 +196,9 @@ def __init__(self, uistate, dbstate, viewmanager, parent=None):
self.lock_file = None
self.data_to_delete = None

objectlist = self.glade.get_object("dblist")
self.dblist = PersistentTreeView(uistate, "dbman")
scrolledwindow = self.glade.get_object("scrolledwindow88")
scrolledwindow.remove(objectlist)
self.dblist.set_vexpand(True)
scrolledwindow = self.glade.get_object("scrolledwindow")
scrolledwindow.add(self.dblist)
self.selection = self.dblist.get_selection()

Expand Down
Loading

0 comments on commit d7f6db0

Please sign in to comment.