Skip to content

Commit

Permalink
Dumb typo in the menu code (#3829)
Browse files Browse the repository at this point in the history
  • Loading branch information
ferdnyc authored Nov 10, 2020
1 parent 0a729c3 commit 925427d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/windows/views/properties_tableview.py
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,7 @@ def contextMenuEvent(self, event):
menu = QMenu(self)
if points > 1:
# Menu items only for multiple points
Bezier_Menu = menu.AddMenu(self.bezier_icon, _("Bezier"))
Bezier_Menu = menu.addMenu(self.bezier_icon, _("Bezier"))
for bezier_preset in bezier_presets:
preset_action = Bezier_Menu.addAction(bezier_preset[4])
preset_action.triggered.connect(partial(self.Bezier_Action_Triggered, bezier_preset))
Expand Down

0 comments on commit 925427d

Please sign in to comment.