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
|
from wizarddialog import WizardDialog
|
||||||
return WizardDialog
|
return WizardDialog
|
||||||
|
|
||||||
|
def _calcSelectTileDialogWithPreview(self):
|
||||||
|
return SelectTileDialogWithPreview
|
||||||
#
|
#
|
||||||
# create the menubar
|
# create the menubar
|
||||||
#
|
#
|
||||||
|
|
|
@ -68,6 +68,9 @@ class PysolMenubarTk(PysolMenubarTkCommon):
|
||||||
from wizarddialog import WizardDialog
|
from wizarddialog import WizardDialog
|
||||||
return WizardDialog
|
return WizardDialog
|
||||||
|
|
||||||
|
def _calcSelectTileDialogWithPreview(self):
|
||||||
|
return SelectTileDialogWithPreview
|
||||||
|
|
||||||
#
|
#
|
||||||
# create the menubar
|
# create the menubar
|
||||||
#
|
#
|
||||||
|
|
|
@ -1213,7 +1213,7 @@ Unsupported game for export.
|
||||||
key = self.app.tabletile_index
|
key = self.app.tabletile_index
|
||||||
if key <= 0:
|
if key <= 0:
|
||||||
key = self.app.opt.colors['table'] ##.lower()
|
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"),
|
title=_("Select table background"),
|
||||||
manager=self.app.tabletile_manager,
|
manager=self.app.tabletile_manager,
|
||||||
key=key)
|
key=key)
|
||||||
|
|
Loading…
Add table
Reference in a new issue