Qt: Make "Mute" able to be bound to a key (fixes #559)

This commit is contained in:
Vicki Pfau 2017-04-05 13:17:11 -07:00
parent 81f38fd76f
commit 2fbd31c51a
2 changed files with 3 additions and 1 deletions

View File

@ -83,6 +83,7 @@ Misc:
- Qt: Re-enable QtMultimedia on Windows
- 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:

View File

@ -1266,11 +1266,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");