Merge pull request #11740 from Pokechu22/interface-pane-mouse-lock-visibility

DolphinQt: Fix mouse lock checkbox appearing when it shouldn't
This commit is contained in:
Admiral H. Curtiss 2023-04-08 22:59:31 +02:00 committed by GitHub
commit 79b8e136b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -204,6 +204,8 @@ void InterfacePane::CreateInGame()
groupbox_layout->addWidget(mouse_groupbox);
#ifdef _WIN32
groupbox_layout->addWidget(m_checkbox_lock_mouse);
#else
m_checkbox_lock_mouse->hide();
#endif
}