Skip to content

Commit

Permalink
Fix: wrong settings update process
Browse files Browse the repository at this point in the history
* fix OggVorbisQualityMode(wrong) -> QAACQualityMode
  • Loading branch information
WL-Amigo committed Aug 14, 2017
1 parent 765e714 commit 19bb91a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GUI/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ static void updateSettings(bool reset = false) {
reset);
updateSetting(s, ConfigKey::Encoder::OggVorbisQualityValue, 4, reset);
me = QMetaEnum::fromType<ConfigEnums::Encoder::QAACQualityModeEnum>();
updateSetting(s, ConfigKey::Encoder::OggVorbisQualityMode,
updateSetting(s, ConfigKey::Encoder::QAACQualityMode,
me.valueToKey(static_cast<int>(
ConfigEnums::Encoder::QAACQualityModeEnum::normal)),
reset);
Expand Down

0 comments on commit 19bb91a

Please sign in to comment.