From aa24f15a84a9a56f1f8e1e573dd12e9658ae1afd Mon Sep 17 00:00:00 2001 From: Joe R Date: Sun, 10 Oct 2021 21:10:22 -0400 Subject: [PATCH] Converting height/width formulas to integers. --- pysollib/tile/selectcardset.py | 6 +++--- pysollib/tile/selectgame.py | 6 +++--- pysollib/tile/selecttile.py | 6 +++--- pysollib/ui/tktile/selecttree.py | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/pysollib/tile/selectcardset.py b/pysollib/tile/selectcardset.py index a5780cd9..5e0b8ab6 100644 --- a/pysollib/tile/selectcardset.py +++ b/pysollib/tile/selectcardset.py @@ -229,9 +229,9 @@ class SelectCardsetDialogWithPreview(MfxDialog): sw = self.top.winfo_screenwidth() sh = self.top.winfo_screenheight() - h = sh * .8 - w = sw * .8 - w1 = min(250, sw / 2.5) + h = int(sh * .8) + w = int(sw * .8) + w1 = int(min(250, sw / 2.5)) geometry = ("%dx%d+%d+%d" % (w, h, (sw - w) / 2, (sh - h) / 2)) self.top.wm_minsize(400, 200) diff --git a/pysollib/tile/selectgame.py b/pysollib/tile/selectgame.py index ced9aaec..6d17f640 100644 --- a/pysollib/tile/selectgame.py +++ b/pysollib/tile/selectgame.py @@ -354,9 +354,9 @@ class SelectGameDialogWithPreview(SelectGameDialog): sw = self.top.winfo_screenwidth() sh = self.top.winfo_screenheight() - h = sh * .8 - w = sw * .8 - w1 = min(250, sw / 2.5) + h = int(sh * .8) + w = int(sw * .8) + w1 = int(min(250, sw / 2.5)) geometry = ("%dx%d+%d+%d" % (w, h, (sw - w) / 2, (sh - h) / 2)) self.top.wm_minsize(400, 200) diff --git a/pysollib/tile/selecttile.py b/pysollib/tile/selecttile.py index f01e9f8b..2dbec051 100644 --- a/pysollib/tile/selecttile.py +++ b/pysollib/tile/selecttile.py @@ -130,9 +130,9 @@ class SelectTileDialogWithPreview(MfxDialog): sw = self.top.winfo_screenwidth() sh = self.top.winfo_screenheight() - h = sh * .8 - w = sw * .8 - w1 = min(250, sw / 2.5) + h = int(sh * .8) + w = int(sw * .8) + w1 = int(min(250, sw / 2.5)) geometry = ("%dx%d+%d+%d" % (w, h, (sw - w) / 2, (sh - h) / 2)) self.top.wm_minsize(400, 200) diff --git a/pysollib/ui/tktile/selecttree.py b/pysollib/ui/tktile/selecttree.py index c3e8c0b6..1b63445d 100644 --- a/pysollib/ui/tktile/selecttree.py +++ b/pysollib/ui/tktile/selecttree.py @@ -99,7 +99,7 @@ class BaseSelectDialogTreeCanvas: height = 25 * disty if parent and parent.winfo_screenheight() >= 800: height = 30 * disty - height = min(height, parent.winfo_screenheight() * .35) + height = int(min(height, parent.winfo_screenheight() * .35)) self.lines = height // disty self._calc_MfxTreeInCanvas().__init__( self, parent, self.data.rootnodes,