Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGhostkeeper <rubend@tutanota.com>2021-01-04 17:54:18 +0300
committerGhostkeeper <rubend@tutanota.com>2021-01-04 20:11:00 +0300
commitde80461954fc91d32c95e1a56ef88f5c7f69796f (patch)
tree79a3e504e255029c53e203ffd6964739fefd5f51
parent00de7497a4c2986cf8fd13be8f598a0f615f3d63 (diff)
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.
-rw-r--r--resources/qml/Actions.qml11
1 files changed, 1 insertions, 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;
@@ -415,14 +414,6 @@ Item
Action
{
- id: openAction;
- text: catalog.i18nc("@action:inmenu menubar:file","&Open File(s)...");
- iconName: "document-open";
- shortcut: StandardKey.Open;
- }
-
- Action
- {
id: newProjectAction
text: catalog.i18nc("@action:inmenu menubar:file","&New Project...");
shortcut: StandardKey.New