Add 'auto refresh' to memory visualizer to refresh.

After every stopping point.
This commit is contained in:
Ernie Pasveer
2022-05-17 17:47:34 -05:00
parent 80eb956a0a
commit de85c95c7c
2 changed files with 164 additions and 144 deletions
+7
View File
@@ -206,6 +206,13 @@ void SeerMemoryVisualizerWidget::handleText (const QString& text) {
}
}
// At a stopping point, refresh.
}else if (text.startsWith("*stopped,reason=\"")) {
if (autoRefreshCheckBox->isChecked()) {
handleRefreshButton();
}
}else{
// Ignore anything else.
}