Skip to content

Commit

Permalink
fix another clumsy mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
th3w1zard1 committed Jul 6, 2024
1 parent d1cb8d2 commit 701995b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tools/HolocronToolset/src/toolset/gui/editors/dlg.py
Original file line number Diff line number Diff line change
Expand Up @@ -4171,7 +4171,7 @@ def _getLinkContextMenu(
pasteLinkAction.setEnabled(False)
pasteNewAction.setEnabled(False)
else:
copied_node_type = "Entry" if isinstance(self._copy, DLGEntry) else "Reply"
copied_node_type = "Entry" if isinstance(self._copy.node, DLGEntry) else "Reply"
pasteLinkAction.setText(f"Paste {copied_node_type} from Clipboard as Link")
pasteNewAction.setText(f"Paste {copied_node_type} from Clipboard as Deep Copy")
if node_type == copied_node_type:
Expand Down

0 comments on commit 701995b

Please sign in to comment.