mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-09 14:55:03 -06:00
Fix deleting item with backspace
This commit is contained in:
parent
a92a9dd4c0
commit
e0ec64ee0e
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue