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

Fix the tiles' dialog from the menu.

This commit is contained in:
Shlomi Fish 2016-03-01 19:58:45 +02:00
parent 649f7b07dc
commit 8f161ce335
3 changed files with 6 additions and 1 deletions

View file

@ -78,6 +78,8 @@ class PysolMenubarTk(PysolMenubarTkCommon):
from wizarddialog import WizardDialog
return WizardDialog
def _calcSelectTileDialogWithPreview(self):
return SelectTileDialogWithPreview
#
# create the menubar
#

View file

@ -68,6 +68,9 @@ class PysolMenubarTk(PysolMenubarTkCommon):
from wizarddialog import WizardDialog
return WizardDialog
def _calcSelectTileDialogWithPreview(self):
return SelectTileDialogWithPreview
#
# create the menubar
#

View file

@ -1213,7 +1213,7 @@ Unsupported game for export.
key = self.app.tabletile_index
if key <= 0:
key = self.app.opt.colors['table'] ##.lower()
d = SelectTileDialogWithPreview(self.top, app=self.app,
d = self._calcSelectTileDialogWithPreview()(self.top, app=self.app,
title=_("Select table background"),
manager=self.app.tabletile_manager,
key=key)