mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-21 12:04:56 +00:00
Merge pull request #6869 from master0fdisaster/master0fdisaster-patch-1
Fix "Show Input Display"
This commit is contained in:
commit
8ca1bf52c9
1 changed files with 1 additions and 1 deletions
|
@ -666,7 +666,7 @@ void MenuBar::AddMovieMenu()
|
|||
auto* input_display = movie_menu->addAction(tr("Show Input Display"));
|
||||
input_display->setCheckable(true);
|
||||
input_display->setChecked(SConfig::GetInstance().m_ShowInputDisplay);
|
||||
connect(frame_counter, &QAction::toggled,
|
||||
connect(input_display, &QAction::toggled,
|
||||
[](bool value) { SConfig::GetInstance().m_ShowInputDisplay = value; });
|
||||
|
||||
auto* system_clock = movie_menu->addAction(tr("Show System Clock"));
|
||||
|
|
Loading…
Add table
Reference in a new issue