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

Integer division on tree size

This commit is contained in:
Joe R 2021-10-04 22:37:23 -04:00
parent c9ac0e6f69
commit 7824fe1e59
3 changed files with 3 additions and 3 deletions

View file

@ -231,7 +231,7 @@ class SelectCardsetDialogWithPreview(MfxDialog):
sh = self.top.winfo_screenheight()
h = sh * .8
w1, w2 = min(300, sw / 2.5), max(sw / 2 + ((sw / 2.5) - 300), sw / 2)
w1, w2 = min(300, sw // 2.5), max(sw / 2 + ((sw // 2.5) - 300), sw / 2)
paned_window = ttk.PanedWindow(top_frame, orient='horizontal')
paned_window.pack(expand=True, fill='both')
left_frame = ttk.Frame(paned_window)

View file

@ -356,7 +356,7 @@ class SelectGameDialogWithPreview(SelectGameDialog):
sh = self.top.winfo_screenheight()
h = sh * .8
w1, w2 = min(250, sw / 2.5), max(sw / 2 + ((sw / 2.5) - 250), sw / 2)
w1, w2 = min(250, sw // 2.5), max(sw / 2 + ((sw // 2.5) - 250), sw / 2)
# print sw, w1, w2
# w2 = max(200, min(w2, 10 + 12 * (app.subsampled_images.CARDW + 10)))

View file

@ -132,7 +132,7 @@ class SelectTileDialogWithPreview(MfxDialog):
sh = self.top.winfo_screenheight()
h = sh * .8
w1, w2 = min(250, sw / 2.5), max(sw / 2 + ((sw / 2.5) - 250), sw / 2)
w1, w2 = min(250, sw // 2.5), max(sw / 2 + ((sw // 2.5) - 250), sw / 2)
font = app.getFont("default")
padx, pady = 4, 4