diff --git a/pysollib/tile/menubar.py b/pysollib/tile/menubar.py index c1fca6ae..59ba2d18 100644 --- a/pysollib/tile/menubar.py +++ b/pysollib/tile/menubar.py @@ -78,6 +78,9 @@ class PysolMenubarTk(PysolMenubarTkCommon): from wizarddialog import WizardDialog return WizardDialog + def _calcSoundOptionsDialog(self): + return SoundOptionsDialog + def _calcSelectTileDialogWithPreview(self): return SelectTileDialogWithPreview # diff --git a/pysollib/tk/menubar.py b/pysollib/tk/menubar.py index a8e5b371..dcafd0ac 100644 --- a/pysollib/tk/menubar.py +++ b/pysollib/tk/menubar.py @@ -68,6 +68,9 @@ class PysolMenubarTk(PysolMenubarTkCommon): from wizarddialog import WizardDialog return WizardDialog + def _calcSoundOptionsDialog(self): + return SoundOptionsDialog + def _calcSelectTileDialogWithPreview(self): return SelectTileDialogWithPreview diff --git a/pysollib/ui/tktile/menubar.py b/pysollib/ui/tktile/menubar.py index 6301ef6c..c334bcfd 100644 --- a/pysollib/ui/tktile/menubar.py +++ b/pysollib/ui/tktile/menubar.py @@ -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):