mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-10-10 15:27:53 -06:00
Properly implement Save Selection
This commit is contained in:
parent
b5e8f01cfa
commit
db59954521
1 changed files with 8 additions and 1 deletions
|
@ -49,7 +49,14 @@ UM.MainWindow {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
MenuItem { text: "Save Selection" }
|
MenuSeparator { }
|
||||||
|
|
||||||
|
MenuItem {
|
||||||
|
text: "Save Selection to File";
|
||||||
|
enabled: UM.Selection.hasSelection;
|
||||||
|
iconName: "document-save-as";
|
||||||
|
onTriggered: devicesModel.requestWriteSelectionToDevice("local_file");
|
||||||
|
}
|
||||||
Menu {
|
Menu {
|
||||||
id: saveAllMenu
|
id: saveAllMenu
|
||||||
title: "Save All"
|
title: "Save All"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue