From 05ecd1bcc4ffd89aa204945ae97b420e31f5d858 Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Wed, 20 Jun 2007 14:29:45 +0000 Subject: [PATCH] Fix reading the speech_mute setting, the global setting was read, instead of the domain specific setting. svn-id: r27554 --- gui/options.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/options.cpp b/gui/options.cpp index e33f7a1e3d4..a29a5cb56e2 100644 --- a/gui/options.cpp +++ b/gui/options.cpp @@ -238,7 +238,7 @@ void OptionsDialog::open() { int speed; int sliderMaxValue = _subSpeedSlider->getMaxValue(); - _subMode = getSubtitleMode(ConfMan.getBool("subtitles", _domain), ConfMan.getBool("speech_mute")); + _subMode = getSubtitleMode(ConfMan.getBool("subtitles", _domain), ConfMan.getBool("speech_mute", _domain)); _subToggleButton->setLabel(_subModeDesc[_subMode]); // Engines that reuse the subtitle speed widget set their own max value.