Skip to content

Commit

Permalink
FunctionDialog: Show tags
Browse files Browse the repository at this point in the history
  • Loading branch information
mborgerson authored Sep 22, 2023
1 parent 2851069 commit 566ec5f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions angrmanagement/ui/dialogs/function.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ def _init_widgets(self):
"Calling Convention:",
"<Unknown>" if self.function.calling_convention is None else f"{self.function.calling_convention}",
),
("Tags:", ", ".join(self.function.tags)),
]:
main_layout.addWidget(QLabel(label), r, 0)
le = QLineEdit(text, self)
Expand Down

0 comments on commit 566ec5f

Please sign in to comment.