1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-22 02:32:36 +01:00

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.
This commit is contained in:
Megamouse 2024-09-05 22:25:10 +02:00 committed by Elad
parent b4ff988bd8
commit 303c6715dd

View File

@ -87,7 +87,6 @@ debugger_frame::debugger_frame(std::shared_ptr<gui_settings> 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);