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:
parent
0a9add937e
commit
e7090f8f4b
3 changed files with 7 additions and 1 deletions
|
@ -78,6 +78,9 @@ class PysolMenubarTk(PysolMenubarTkCommon):
|
||||||
from wizarddialog import WizardDialog
|
from wizarddialog import WizardDialog
|
||||||
return WizardDialog
|
return WizardDialog
|
||||||
|
|
||||||
|
def _calcSoundOptionsDialog(self):
|
||||||
|
return SoundOptionsDialog
|
||||||
|
|
||||||
def _calcSelectTileDialogWithPreview(self):
|
def _calcSelectTileDialogWithPreview(self):
|
||||||
return SelectTileDialogWithPreview
|
return SelectTileDialogWithPreview
|
||||||
#
|
#
|
||||||
|
|
|
@ -68,6 +68,9 @@ class PysolMenubarTk(PysolMenubarTkCommon):
|
||||||
from wizarddialog import WizardDialog
|
from wizarddialog import WizardDialog
|
||||||
return WizardDialog
|
return WizardDialog
|
||||||
|
|
||||||
|
def _calcSoundOptionsDialog(self):
|
||||||
|
return SoundOptionsDialog
|
||||||
|
|
||||||
def _calcSelectTileDialogWithPreview(self):
|
def _calcSelectTileDialogWithPreview(self):
|
||||||
return SelectTileDialogWithPreview
|
return SelectTileDialogWithPreview
|
||||||
|
|
||||||
|
|
|
@ -1021,7 +1021,7 @@ Unsupported game for export.
|
||||||
|
|
||||||
def mOptSoundDialog(self, *args):
|
def mOptSoundDialog(self, *args):
|
||||||
if self._cancelDrag(break_pause=False): return
|
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)
|
self.tkopt.sound.set(self.app.opt.sound)
|
||||||
|
|
||||||
def mOptAutoFaceUp(self, *args):
|
def mOptAutoFaceUp(self, *args):
|
||||||
|
|
Loading…
Add table
Reference in a new issue