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:
authorRemco Burema <r.burema@ultimaker.com>2021-12-29 11:10:19 +0300
committerRemco Burema <r.burema@ultimaker.com>2021-12-29 11:10:19 +0300
commit895488a07b47ad9489733c5f3b540c393c5dfa8c (patch)
treec61eb123f80d9e78442f828b0b02ebad57b77070 /resources/qml/Cura.qml
parent6dc6020217001fc22b1087e7bf2380da28234c0b (diff)
Qt5->Qt6: Usee key-constants namespace.
part of CURA-8591
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 eb78240d64..94574116ec 100644
--- a/resources/qml/Cura.qml
+++ b/resources/qml/Cura.qml
@@ -152,7 +152,7 @@ UM.MainWindow
//DeleteSelection on the keypress backspace event
Keys.onPressed:
{
- if (event.key == Qt.Key_Backspace)
+ if (event.key == Qt.Key.Key_Backspace)
{
Cura.Actions.deleteSelection.trigger()
}