Checkpoint

This commit is contained in:
Ernie Pasveer
2024-01-11 09:09:05 -06:00
parent 524dedb10f
commit 51e1cd1010
6 changed files with 27 additions and 19 deletions
+6 -5
View File
@@ -100,11 +100,6 @@ void SeerThreadIdsBrowserWidget::handleText (const QString& text) {
void SeerThreadIdsBrowserWidget::handleStoppingPointReached () {
// Don't do any work if the widget is hidden.
if (isHidden()) {
return;
}
refresh();
}
@@ -116,6 +111,12 @@ void SeerThreadIdsBrowserWidget::handleItemClicked (QTreeWidgetItem* item, int c
}
void SeerThreadIdsBrowserWidget::refresh () {
// Don't do any work if the widget is hidden.
if (isHidden()) {
return;
}
emit refreshThreadIds();
}