mirror of
https://github.com/PabloMK7/citra.git
synced 2025-01-16 03:45:19 +00:00
Hide mouse: fix for secondary window and single window mode (#6220)
This commit is contained in:
parent
517e0bc342
commit
51e252c7ed
|
@ -2233,10 +2233,16 @@ void GMainWindow::HideMouseCursor() {
|
|||
return;
|
||||
}
|
||||
render_window->setCursor(QCursor(Qt::BlankCursor));
|
||||
secondary_window->setCursor(QCursor(Qt::BlankCursor));
|
||||
if (UISettings::values.single_window_mode.GetValue()) {
|
||||
setCursor(QCursor(Qt::BlankCursor));
|
||||
}
|
||||
}
|
||||
|
||||
void GMainWindow::ShowMouseCursor() {
|
||||
unsetCursor();
|
||||
render_window->unsetCursor();
|
||||
secondary_window->unsetCursor();
|
||||
if (emu_thread != nullptr && UISettings::values.hide_mouse) {
|
||||
mouse_hide_timer.start();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue