Skip to content

Commit

Permalink
wxGUI/vdigit: fix 'Copy categories/features' editing tool if you sele…
Browse files Browse the repository at this point in the history
…ct only one feature (#1816)
  • Loading branch information
tmszi committed Aug 26, 2021
1 parent 99b1825 commit 2586b0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui/wxpython/vdigit/mapwindow.py
Expand Up @@ -1092,7 +1092,7 @@ def _onRightUp(self, event):
fid,
]
)
elif action in ("copyCats", "copyAttrs"):
elif action in ("copyCats", "copyAttrs") and hasattr(self, "copyCatsIds"):
if action == "copyCats":
if (
self.digit.CopyCats(
Expand Down

0 comments on commit 2586b0e

Please sign in to comment.