diff options
| author | JosJuice <josjuice@gmail.com> | 2019-07-06 10:50:11 +0200 |
|---|---|---|
| committer | JosJuice <josjuice@gmail.com> | 2019-07-06 11:30:17 +0200 |
| commit | 92a655c8b90c62255bcd3fcc160e240c98f79217 (patch) | |
| tree | 8c3fbc41272e1ffb63bdd2315668fd573a386489 /Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp | |
| parent | 0a7395bfba99719f71de5186a9916e66c1901f37 (diff) | |
DolphinQt: Don't update debug widgets when hidden
Saves on CPU usage when pausing/unpausing with the debugger disabled.
This is especially important when using frame advance rapidly.
Diffstat (limited to 'Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp')
| -rw-r--r-- | Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp b/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp index 2427101cb7..d413bb0cd0 100644 --- a/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp @@ -92,6 +92,9 @@ void CodeViewWidget::FontBasedSizing() void CodeViewWidget::Update() { + if (!isVisible()) + return; + if (m_updating) return; @@ -568,6 +571,11 @@ void CodeViewWidget::mousePressEvent(QMouseEvent* event) } } +void CodeViewWidget::showEvent(QShowEvent* event) +{ + Update(); +} + void CodeViewWidget::ToggleBreakpoint() { if (PowerPC::debug_interface.IsBreakpoint(GetContextAddress())) |
