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

try fix save games geometry.

See https://github.com/shlomif/PySolFC/issues/84 .
This commit is contained in:
Shlomi Fish 2019-04-04 13:11:44 +03:00
parent 80252696c8
commit 48e24c2021

View file

@ -202,13 +202,13 @@ class Game(object):
# update display properties
self.canvas.busy = True
# geometry
mycond = (not USE_PIL and self.app.opt.save_games_geometry and
mycond = (self.app.opt.save_games_geometry and
self.id in self.app.opt.games_geometry)
if mycond:
# restore game geometry
w, h = self.app.opt.games_geometry[self.id]
self.canvas.config(width=w, height=h)
if USE_PIL:
if True and USE_PIL:
if self.app.opt.auto_scale:
w, h = self.app.opt.game_geometry
self.canvas.setInitialSize(w, h, margins=False,
@ -219,7 +219,7 @@ class Game(object):
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)
# 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'):
@ -1124,7 +1124,7 @@ class Game(object):
def _configureHandler(self, event=None):
# print 'configureHandler'
if not USE_PIL:
if False: # if not USE_PIL:
return
if not self.app:
return