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

Fix a bug with SoundDialog.

This commit is contained in:
Shlomi Fish 2016-03-14 18:08:49 +02:00
parent 0a9add937e
commit e7090f8f4b
3 changed files with 7 additions and 1 deletions

View file

@ -78,6 +78,9 @@ class PysolMenubarTk(PysolMenubarTkCommon):
from wizarddialog import WizardDialog
return WizardDialog
def _calcSoundOptionsDialog(self):
return SoundOptionsDialog
def _calcSelectTileDialogWithPreview(self):
return SelectTileDialogWithPreview
#

View file

@ -68,6 +68,9 @@ class PysolMenubarTk(PysolMenubarTkCommon):
from wizarddialog import WizardDialog
return WizardDialog
def _calcSoundOptionsDialog(self):
return SoundOptionsDialog
def _calcSelectTileDialogWithPreview(self):
return SelectTileDialogWithPreview

View file

@ -1021,7 +1021,7 @@ Unsupported game for export.
def mOptSoundDialog(self, *args):
if self._cancelDrag(break_pause=False): return
d = SoundOptionsDialog(self.top, _("Sound settings"), self.app)
d = self._calcSoundOptionsDialog()(self.top, _("Sound settings"), self.app)
self.tkopt.sound.set(self.app.opt.sound)
def mOptAutoFaceUp(self, *args):