Fix deleting item with backspace

This commit is contained in:
Jaime van Kessel 2022-04-01 13:40:29 +02:00
parent a92a9dd4c0
commit e0ec64ee0e

View File

@ -164,7 +164,7 @@ UM.MainWindow
//DeleteSelection on the keypress backspace event //DeleteSelection on the keypress backspace event
Keys.onPressed: Keys.onPressed:
{ {
if (event.key == Qt.Key.Key_Backspace) if (event.key == Qt.Key_Backspace)
{ {
Cura.Actions.deleteSelection.trigger() Cura.Actions.deleteSelection.trigger()
} }