From bec513aa8a8c408cc7c9301659d7e846b581d3eb Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Tue, 17 Dec 2019 10:35:34 +0100 Subject: [PATCH] Alternatively allow backspace to delete selection I thought we already had this? Fixes #6475. --- resources/qml/Actions.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/qml/Actions.qml b/resources/qml/Actions.qml index 7e6afa813d..e5b39c6ba5 100644 --- a/resources/qml/Actions.qml +++ b/resources/qml/Actions.qml @@ -258,7 +258,7 @@ Item text: catalog.i18ncp("@action:inmenu menubar:edit", "Delete Selected Model", "Delete Selected Models", UM.Selection.selectionCount); enabled: UM.Controller.toolsEnabled && UM.Selection.hasSelection; iconName: "edit-delete"; - shortcut: StandardKey.Delete; + shortcut: StandardKey.Delete | "Backspace" onTriggered: CuraActions.deleteSelection(); }