From 144b1858025bd78cccb22de5eac2f6fca94ea9ec Mon Sep 17 00:00:00 2001 From: Bevan Weiss Date: Sat, 29 Aug 2020 22:19:13 +1000 Subject: [PATCH] Woops... premature commit/push. Fixed up the usage of connect --- rpcs3/rpcs3qt/gs_frame.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/rpcs3qt/gs_frame.cpp b/rpcs3/rpcs3qt/gs_frame.cpp index 55e06fc42d..f5d5bb9ef9 100644 --- a/rpcs3/rpcs3qt/gs_frame.cpp +++ b/rpcs3/rpcs3qt/gs_frame.cpp @@ -73,7 +73,7 @@ gs_frame::gs_frame(const QRect& geometry, const QIcon& appIcon, const std::share connect(this, &QWindow::visibilityChanged, this, &gs_frame::HandleCursor); // Configure the mouse hide on idle timer - connect(&m_mousehide_timer, &QTimer::timeout, &gs_frame::MouseHideTimeout); + connect(&m_mousehide_timer, &QTimer::timeout, this, &gs_frame::MouseHideTimeout); m_mousehide_timer.setSingleShot(true); if (m_hide_mouse_after_idletime) {