diff --git a/cura/API/SidebarContextMenu.py b/cura/API/SidebarContextMenu.py index 9c7ad4c4b6..fdd2d3ed88 100644 --- a/cura/API/SidebarContextMenu.py +++ b/cura/API/SidebarContextMenu.py @@ -25,8 +25,8 @@ class SidebarContextMenu: ## Add items to the sidebar context menu. # \param menu_item dict containing the menu item to add. - def addSidebarMenuItem(self, menu_items: dict) -> None: - self._application.addSidebarCustomMenuItem(menu_items) + def addSidebarMenuItem(self, menu_item: dict) -> None: + self._application.addSidebarCustomMenuItem(menu_item) ## Get all custom items currently added to the sidebar context menu. # \return List containing all custom context menu items.