Backspace now triggers same action as delete

CURA-1891
This commit is contained in:
Jaime van Kessel 2016-07-29 10:37:03 +02:00
parent a19123eb66
commit 1ed0503e02

View File

@ -54,10 +54,7 @@ UM.MainWindow
Keys.onPressed: {
if (event.key == Qt.Key_Backspace)
{
if(objectContextMenu.objectId != 0)
{
Printer.deleteObject(objectContextMenu.objectId);
}
Cura.Actions.deleteSelection.trigger()
}
}