Woops... premature commit/push.

Fixed up the usage of connect
This commit is contained in:
Bevan Weiss 2020-08-29 22:19:13 +10:00 committed by Megamouse
parent 3c0f6a2919
commit 144b185802

View File

@ -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)
{