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:
authorJaime van Kessel <nallath@gmail.com>2022-04-01 14:40:29 +0300
committerJaime van Kessel <nallath@gmail.com>2022-04-01 14:40:29 +0300
commite0ec64ee0e000bdb3f53b4483410631587f401a7 (patch)
treeb7aeedae6806c14399c57addca56bdff231c5389 /resources/qml/Cura.qml
parenta92a9dd4c0c7ab8e4c8439f9dbbaf0a03397359d (diff)
Fix deleting item with backspace
Diffstat (limited to 'resources/qml/Cura.qml')
-rw-r--r--resources/qml/Cura.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/Cura.qml b/resources/qml/Cura.qml
index 4bfc2959a2..61b4813d28 100644
--- a/resources/qml/Cura.qml
+++ b/resources/qml/Cura.qml
@@ -164,7 +164,7 @@ UM.MainWindow
//DeleteSelection on the keypress backspace event
Keys.onPressed:
{
- if (event.key == Qt.Key.Key_Backspace)
+ if (event.key == Qt.Key_Backspace)
{
Cura.Actions.deleteSelection.trigger()
}