From 303c6715dd808e7a1c55b4bc08c45402c14e75a3 Mon Sep 17 00:00:00 2001 From: Megamouse Date: Thu, 5 Sep 2024 22:25:10 +0200 Subject: [PATCH] Qt: Don't start the debug update timer in the constructor This caused the timer to be active even when the debugger is initially hidden. --- rpcs3/rpcs3qt/debugger_frame.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/rpcs3/rpcs3qt/debugger_frame.cpp b/rpcs3/rpcs3qt/debugger_frame.cpp index 60752e6057..185a48c456 100644 --- a/rpcs3/rpcs3qt/debugger_frame.cpp +++ b/rpcs3/rpcs3qt/debugger_frame.cpp @@ -87,7 +87,6 @@ debugger_frame::debugger_frame(std::shared_ptr gui_settings, QWidg m_update = new QTimer(this); connect(m_update, &QTimer::timeout, this, &debugger_frame::UpdateUI); - EnableUpdateTimer(true); m_mono = QFontDatabase::systemFont(QFontDatabase::FixedFont); m_mono.setPointSize(9);