mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-03 21:41:26 +12: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:
parent
b4ff988bd8
commit
303c6715dd
1 changed files with 0 additions and 1 deletions
|
@ -87,7 +87,6 @@ debugger_frame::debugger_frame(std::shared_ptr<gui_settings> gui_settings, QWidg
|
||||||
|
|
||||||
m_update = new QTimer(this);
|
m_update = new QTimer(this);
|
||||||
connect(m_update, &QTimer::timeout, this, &debugger_frame::UpdateUI);
|
connect(m_update, &QTimer::timeout, this, &debugger_frame::UpdateUI);
|
||||||
EnableUpdateTimer(true);
|
|
||||||
|
|
||||||
m_mono = QFontDatabase::systemFont(QFontDatabase::FixedFont);
|
m_mono = QFontDatabase::systemFont(QFontDatabase::FixedFont);
|
||||||
m_mono.setPointSize(9);
|
m_mono.setPointSize(9);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue