mirror of https://github.com/mgba-emu/mgba.git
Qt: Make "Mute" able to be bound to a key (fixes #559)
This commit is contained in:
parent
95286a6832
commit
c53955522f
1
CHANGES
1
CHANGES
|
@ -23,6 +23,7 @@ Misc:
|
|||
- Feature: Support ImageMagick 7
|
||||
- FFmpeg: Return false if a file fails to open
|
||||
- FFmpeg: Force MP4 files to YUV420P
|
||||
- Qt: Make "Mute" able to be bound to a key
|
||||
|
||||
0.5.2: (2016-12-31)
|
||||
Bugfixes:
|
||||
|
|
|
@ -1256,11 +1256,12 @@ void Window::setupMenu(QMenuBar* menubar) {
|
|||
avMenu->addSeparator();
|
||||
|
||||
ConfigOption* mute = m_config->addOption("mute");
|
||||
mute->addBoolean(tr("Mute"), avMenu);
|
||||
QAction* muteAction = mute->addBoolean(tr("Mute"), avMenu);
|
||||
mute->connect([this](const QVariant& value) {
|
||||
reloadConfig();
|
||||
}, this);
|
||||
m_config->updateOption("mute");
|
||||
addControlledAction(avMenu, muteAction, "mute");
|
||||
|
||||
QMenu* target = avMenu->addMenu(tr("FPS target"));
|
||||
ConfigOption* fpsTargetOption = m_config->addOption("fpsTarget");
|
||||
|
|
Loading…
Reference in New Issue