Hide mouse: fix for secondary window and single window mode (#6220)
This commit is contained in:
parent
517e0bc342
commit
51e252c7ed
1 changed files with 6 additions and 0 deletions
|
@ -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