Qt: Make mute menu option also toggle fast-forward mute (fixes #1424)
Vicki Pfau vi@endrift.com
Wed, 29 May 2019 09:33:15 -0700
2 files changed,
2 insertions(+),
0 deletions(-)
M
CHANGES
→
CHANGES
@@ -43,6 +43,7 @@ - Qt: Increase maximum magnifications and scaling
- Qt: Add native FPS button to settings view - Qt: Improve sync code - Switch: Dynamic display resizing + - Qt: Make mute menu option also toggle fast-forward mute (fixes mgba.io/i/1424) 0.7.2: (2019-05-25) Emulation fixes:
M
src/platform/qt/Window.cpp
→
src/platform/qt/Window.cpp
@@ -1375,6 +1375,7 @@
ConfigOption* mute = m_config->addOption("mute"); mute->addBoolean(tr("Mute"), &m_actions, "av"); mute->connect([this](const QVariant& value) { + m_config->setOption("fastForwardMute", static_cast<bool>(value.toInt())); reloadConfig(); }, this); m_config->updateOption("mute");