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

Fixed the select game and cardset windows after adding scaling options.

This commit is contained in:
Joe R 2022-09-19 23:49:23 -04:00
parent 3fd823b2f5
commit 53bb15b373
3 changed files with 5 additions and 3 deletions

View file

@ -373,7 +373,8 @@ class SelectCardsetDialogWithPreview(MfxDialog):
left_frame.columnconfigure(0, weight=1)
#
self.preview = MfxScrolledCanvas(right_frame)
self.preview.setTile(app, app.tabletile_index, force=True)
self.preview.setTile(app, app.tabletile_index,
app.opt.tabletile_scale_method, force=True)
self.preview.pack(fill='both', expand=True, padx=padx, pady=pady)
self.preview.canvas.preview = 1
# create a preview of the current state

View file

@ -469,7 +469,8 @@ class SelectGameDialogWithPreview(SelectGameDialog):
stats_frame.rowconfigure(6, weight=1)
# Canvas
self.preview = MfxScrolledCanvas(right_frame)
self.preview.setTile(app, app.tabletile_index, force=True)
self.preview.setTile(app, app.tabletile_index,
app.opt.tabletile_scale_method, force=True)
self.preview.grid(row=1, column=0, columnspan=3,
padx=padx, pady=pady, sticky='nsew')
right_frame.columnconfigure(1, weight=1)

View file

@ -374,7 +374,7 @@ class SelectTileDialogWithPreview(MfxDialog):
if tile:
if USE_PIL:
if tile.stretch:
self.textScale['state'] = 'normal'
self.textScale['state'] = 'readonly'
else:
self.textScale['state'] = 'disabled'
if self.preview.setTile(self.app, key, scaling):