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:
parent
649f7b07dc
commit
8f161ce335
3 changed files with 6 additions and 1 deletions
|
@ -78,6 +78,8 @@ class PysolMenubarTk(PysolMenubarTkCommon):
|
|||
from wizarddialog import WizardDialog
|
||||
return WizardDialog
|
||||
|
||||
def _calcSelectTileDialogWithPreview(self):
|
||||
return SelectTileDialogWithPreview
|
||||
#
|
||||
# create the menubar
|
||||
#
|
||||
|
|
|
@ -68,6 +68,9 @@ class PysolMenubarTk(PysolMenubarTkCommon):
|
|||
from wizarddialog import WizardDialog
|
||||
return WizardDialog
|
||||
|
||||
def _calcSelectTileDialogWithPreview(self):
|
||||
return SelectTileDialogWithPreview
|
||||
|
||||
#
|
||||
# create the menubar
|
||||
#
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue