From 0538d960311e0721f45f5a06a0998f8402605088 Mon Sep 17 00:00:00 2001 From: lizzie Date: Sat, 5 Sep 2026 05:55:38 +0000 Subject: [PATCH] 2026-09-05 05:55:38 Signed-off-by: lizzie --- src/yuzu/bootmanager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/yuzu/bootmanager.cpp b/src/yuzu/bootmanager.cpp index 05ed5a437e..42d89fc03e 100644 --- a/src/yuzu/bootmanager.cpp +++ b/src/yuzu/bootmanager.cpp @@ -538,6 +538,7 @@ void GRenderWindow::mouseReleaseEvent(QMouseEvent* event) { } void GRenderWindow::ConstrainMouse() { + input_subsystem->GetMouse()->NotifyChanged(); // required to reset mouse once it's no longer moved if (QtCommon::emu_thread == nullptr || !Settings::values.mouse_panning) { mouse_constrain_timer.stop(); return; @@ -558,7 +559,6 @@ void GRenderWindow::ConstrainMouse() { const int center_y = height() / 2; QCursor::setPos(mapToGlobal(QPoint{center_x, center_y})); } - input_subsystem->GetMouse()->NotifyChanged(); // required to reset mouse once it's no longer moved } void GRenderWindow::wheelEvent(QWheelEvent* event) {