From e7090f8f4bb68568e66bba68e63acde769c134f9 Mon Sep 17 00:00:00 2001 From: Shlomi Fish Date: Mon, 14 Mar 2016 18:08:49 +0200 Subject: [PATCH] Fix a bug with SoundDialog. --- pysollib/tile/menubar.py | 3 +++ pysollib/tk/menubar.py | 3 +++ pysollib/ui/tktile/menubar.py | 2 +- 3 files changed, 7 insertions(+), 1 deletion(-) 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):