mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
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): >>>
This commit is contained in:
parent
48e24c2021
commit
2e67242e92
1 changed files with 4 additions and 3 deletions
|
@ -217,9 +217,10 @@ class Game(object):
|
||||||
# dx, dy = self.canvas.xmargin, self.canvas.ymargin
|
# dx, dy = self.canvas.xmargin, self.canvas.ymargin
|
||||||
# self.canvas.config(scrollregion=(-dx, -dy, dx, dy))
|
# self.canvas.config(scrollregion=(-dx, -dy, dx, dy))
|
||||||
else:
|
else:
|
||||||
w = int(round(self.width * self.app.opt.scale_x))
|
if not mycond:
|
||||||
h = int(round(self.height * self.app.opt.scale_y))
|
w = int(round(self.width * self.app.opt.scale_x))
|
||||||
# self.canvas.setInitialSize(w, h)
|
h = int(round(self.height * self.app.opt.scale_y))
|
||||||
|
self.canvas.setInitialSize(w, h)
|
||||||
self.top.wm_geometry("") # cancel user-specified geometry
|
self.top.wm_geometry("") # cancel user-specified geometry
|
||||||
# preserve texts positions
|
# preserve texts positions
|
||||||
for t in ('info', 'help', 'misc', 'score', 'base_rank'):
|
for t in ('info', 'help', 'misc', 'score', 'base_rank'):
|
||||||
|
|
Loading…
Add table
Reference in a new issue