Skip to content

Commit

Permalink
Qt/WatchWidget: Don't update if not paused.
Browse files Browse the repository at this point in the history
  • Loading branch information
AdmiralCurtiss committed Mar 4, 2023
1 parent 95ce41a commit e8964df
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Source/Core/DolphinQt/Debugger/WatchWidget.cpp
Expand Up @@ -144,6 +144,9 @@ void WatchWidget::Update()
if (!isVisible())
return;

if (Core::GetState() != Core::State::Paused)
return;

m_updating = true;

m_table->clear();
Expand Down

0 comments on commit e8964df

Please sign in to comment.