From 9a51f222653ee3b5c91f78995a80c5502a3af3df Mon Sep 17 00:00:00 2001 From: Bevan Weiss Date: Sat, 29 Aug 2020 22:29:35 +1000 Subject: [PATCH] Remove call to start m_mousehide_timer in gs_frame constructor --- rpcs3/rpcs3qt/gs_frame.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/rpcs3/rpcs3qt/gs_frame.cpp b/rpcs3/rpcs3qt/gs_frame.cpp index f5d5bb9ef9..3f6c8bd04e 100644 --- a/rpcs3/rpcs3qt/gs_frame.cpp +++ b/rpcs3/rpcs3qt/gs_frame.cpp @@ -75,10 +75,6 @@ gs_frame::gs_frame(const QRect& geometry, const QIcon& appIcon, const std::share // Configure the mouse hide on idle timer connect(&m_mousehide_timer, &QTimer::timeout, this, &gs_frame::MouseHideTimeout); m_mousehide_timer.setSingleShot(true); - if (m_hide_mouse_after_idletime) - { - m_mousehide_timer.start(m_hide_mouse_idletime); // we start the idle timer - } #ifdef _WIN32 m_tb_button = new QWinTaskbarButton();