From de80461954fc91d32c95e1a56ef88f5c7f69796f Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Mon, 4 Jan 2021 15:54:18 +0100 Subject: [PATCH] Remove open action, fixing ambiguous overload of Ctrl+O The action was no longer in the menu, but the hotkey still functioned. Then there were two actions for Ctrl+O, which was ambiguous to Qt. Contributes to issue CURA-7868. --- resources/qml/Actions.qml | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/resources/qml/Actions.qml b/resources/qml/Actions.qml index c62b0cb89a..5ad5337e78 100644 --- a/resources/qml/Actions.qml +++ b/resources/qml/Actions.qml @@ -1,4 +1,4 @@ -// Copyright (c) 2018 Ultimaker B.V. +// Copyright (c) 2021 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. pragma Singleton @@ -12,7 +12,6 @@ import Cura 1.0 as Cura Item { property alias newProject: newProjectAction; - property alias open: openAction; property alias quit: quitAction; property alias undo: undoAction; @@ -413,14 +412,6 @@ Item onTriggered: CuraApplication.resetAll(); } - Action - { - id: openAction; - text: catalog.i18nc("@action:inmenu menubar:file","&Open File(s)..."); - iconName: "document-open"; - shortcut: StandardKey.Open; - } - Action { id: newProjectAction