From 2e67242e92cab810467af3838f11784c33145d49 Mon Sep 17 00:00:00 2001 From: Shlomi Fish Date: Fri, 5 Apr 2019 16:26:55 +0300 Subject: [PATCH] Fix the window size on startup. See https://github.com/shlomif/PySolFC/issues/84 : <<< Yes, I can confirm that the "Save games geometry" option is present in that build, and that it works! +1 The default startup window looks like this though (which is something that should be addressed): >>> --- pysollib/game.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pysollib/game.py b/pysollib/game.py index c879d51b..2ba07ae8 100644 --- a/pysollib/game.py +++ b/pysollib/game.py @@ -217,9 +217,10 @@ class Game(object): # dx, dy = self.canvas.xmargin, self.canvas.ymargin # self.canvas.config(scrollregion=(-dx, -dy, dx, dy)) else: - w = int(round(self.width * self.app.opt.scale_x)) - h = int(round(self.height * self.app.opt.scale_y)) - # self.canvas.setInitialSize(w, h) + if not mycond: + w = int(round(self.width * self.app.opt.scale_x)) + h = int(round(self.height * self.app.opt.scale_y)) + self.canvas.setInitialSize(w, h) self.top.wm_geometry("") # cancel user-specified geometry # preserve texts positions for t in ('info', 'help', 'misc', 'score', 'base_rank'):