1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Take into account title bar when determining tree window locations.

This commit is contained in:
Joe R 2022-03-07 18:10:10 -05:00
parent 41edf474d6
commit 44e0e2d6e3
3 changed files with 18 additions and 3 deletions

View file

@ -226,13 +226,18 @@ class SelectCardsetDialogWithPreview(MfxDialog):
if self.TreeDataHolder_Class.data is None:
self.TreeDataHolder_Class.data = self.TreeData_Class(manager, key)
#
# Title bar height - based on parent window as this window
# isn't visible yet. Less accurate, but looks cleaner.
th = int(parent.winfo_rooty() - parent.winfo_y())
sw = self.top.winfo_screenwidth()
sh = self.top.winfo_screenheight()
h = int(sh * .8)
w = int(sw * .8)
w1 = int(min(275, sw / 2.5))
geometry = ("%dx%d+%d+%d" % (w, h, (sw - w) / 2, (sh - h) / 2))
geometry = ("%dx%d+%d+%d" % (w, h, (sw - w) / 2, ((sh - h) / 2) - th))
self.top.wm_minsize(400, 200)
paned_window = ttk.PanedWindow(top_frame, orient='horizontal')

View file

@ -356,13 +356,18 @@ class SelectGameDialogWithPreview(SelectGameDialog):
if self.TreeDataHolder_Class.data is None:
self.TreeDataHolder_Class.data = self.TreeData_Class(app)
#
# Title bar height - based on parent window as this window
# isn't visible yet. Less accurate, but looks cleaner.
th = int(parent.winfo_rooty() - parent.winfo_y())
sw = self.top.winfo_screenwidth()
sh = self.top.winfo_screenheight()
h = int(sh * .8)
w = int(sw * .8)
w1 = int(min(275, sw / 2.5))
geometry = ("%dx%d+%d+%d" % (w, h, (sw - w) / 2, (sh - h) / 2))
geometry = ("%dx%d+%d+%d" % (w, h, (sw - w) / 2, ((sh - h) / 2) - th))
self.top.wm_minsize(400, 200)
# print sw, w1, w2

View file

@ -128,13 +128,18 @@ class SelectTileDialogWithPreview(MfxDialog):
if self.TreeDataHolder_Class.data is None:
self.TreeDataHolder_Class.data = self.TreeData_Class(manager, key)
#
# Title bar height - based on parent window as this window
# isn't visible yet. Less accurate, but looks cleaner.
th = int(parent.winfo_rooty() - parent.winfo_y())
sw = self.top.winfo_screenwidth()
sh = self.top.winfo_screenheight()
h = int(sh * .8)
w = int(sw * .8)
w1 = int(min(275, sw / 2.5))
geometry = ("%dx%d+%d+%d" % (w, h, (sw - w) / 2, (sh - h) / 2))
geometry = ("%dx%d+%d+%d" % (w, h, (sw - w) / 2, ((sh - h) / 2) - th))
self.top.wm_minsize(400, 200)
padx, pady = 4, 4