diff --git a/capa/ida/explorer/model.py b/capa/ida/explorer/model.py index 4d876fee..3325e283 100644 --- a/capa/ida/explorer/model.py +++ b/capa/ida/explorer/model.py @@ -530,6 +530,9 @@ class CapaExplorerDataModel(QtCore.QAbstractItemModel): parent, display, source=doc["rules"].get(feature[feature["type"]], {}).get("source", "") ) + if feature["type"] == "basicblock": + return CapaExplorerBlockItem(parent, location) + if feature["type"] in instruction_view: return CapaExplorerInstructionViewItem(parent, display, location)