mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-03-12 14:46:49 +01:00
Merge pull request #6869 from master0fdisaster/master0fdisaster-patch-1
Fix "Show Input Display"
This commit is contained in:
commit
8ca1bf52c9
@ -666,7 +666,7 @@ void MenuBar::AddMovieMenu()
|
|||||||
auto* input_display = movie_menu->addAction(tr("Show Input Display"));
|
auto* input_display = movie_menu->addAction(tr("Show Input Display"));
|
||||||
input_display->setCheckable(true);
|
input_display->setCheckable(true);
|
||||||
input_display->setChecked(SConfig::GetInstance().m_ShowInputDisplay);
|
input_display->setChecked(SConfig::GetInstance().m_ShowInputDisplay);
|
||||||
connect(frame_counter, &QAction::toggled,
|
connect(input_display, &QAction::toggled,
|
||||||
[](bool value) { SConfig::GetInstance().m_ShowInputDisplay = value; });
|
[](bool value) { SConfig::GetInstance().m_ShowInputDisplay = value; });
|
||||||
|
|
||||||
auto* system_clock = movie_menu->addAction(tr("Show System Clock"));
|
auto* system_clock = movie_menu->addAction(tr("Show System Clock"));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user