Finished feature of opening assembly tab when there's no source file.

This commit is contained in:
Ernie Pasveer
2025-12-19 13:16:52 -06:00
parent 7fed7a338e
commit df17f0e493
10 changed files with 69 additions and 31 deletions
+1 -3
View File
@@ -237,8 +237,6 @@ void SeerThreadFramesBrowserWidget::handleItemClicked (QTreeWidgetItem* item, in
int lineno = item->text(6).toInt();
//qDebug() << "Emit selectedFile and selectedFrame";
// Select thread.
emit selectedThread(item->text(1).toInt());
@@ -249,7 +247,7 @@ void SeerThreadFramesBrowserWidget::handleItemClicked (QTreeWidgetItem* item, in
// Select address if we can.
if (item->text(11) != "") {
emit selectedAddress(item->text(11));
emit maybeSelectedAddress(item->text(5), item->text(7), item->text(11));
}
}
}