Fix reading the speech_mute setting, the global setting was read, instead of the domain specific setting.

svn-id: r27554
This commit is contained in:
Travis Howell 2007-06-20 14:29:45 +00:00
parent 6689a6607b
commit 05ecd1bcc4

View File

@ -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.