mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-08 06:23:59 -06:00
CURA-4104 added first sucky build plate selection options
This commit is contained in:
parent
74a7f02166
commit
5b368fbfd5
7 changed files with 179 additions and 2 deletions
|
@ -39,6 +39,26 @@ Menu
|
|||
onObjectRemoved: base.removeItem(object)
|
||||
}
|
||||
|
||||
MenuSeparator {}
|
||||
MenuItem {
|
||||
text: "build plate 0";
|
||||
onTriggered: CuraActions.setBuildPlateForSelection(0);
|
||||
checkable: true
|
||||
checked: false
|
||||
}
|
||||
MenuItem {
|
||||
text: "build plate 1";
|
||||
onTriggered: CuraActions.setBuildPlateForSelection(1);
|
||||
checkable: true
|
||||
checked: false
|
||||
}
|
||||
MenuItem {
|
||||
text: "build plate 2";
|
||||
onTriggered: CuraActions.setBuildPlateForSelection(2);
|
||||
checkable: true
|
||||
checked: false
|
||||
}
|
||||
|
||||
// Global actions
|
||||
MenuSeparator {}
|
||||
MenuItem { action: Cura.Actions.selectAll; }
|
||||
|
|
|
@ -28,6 +28,25 @@ Menu
|
|||
}
|
||||
ExclusiveGroup { id: group; }
|
||||
|
||||
MenuSeparator {}
|
||||
MenuItem {
|
||||
text: "build plate 0";
|
||||
onTriggered: CuraApplication.setActiveBuildPlate(0);
|
||||
}
|
||||
MenuItem {
|
||||
text: "build plate 1";
|
||||
onTriggered: CuraApplication.setActiveBuildPlate(1);
|
||||
}
|
||||
MenuItem {
|
||||
text: "build plate 2";
|
||||
onTriggered: CuraApplication.setActiveBuildPlate(2);
|
||||
}
|
||||
ExclusiveGroup { id: buildPlateGroup; }
|
||||
|
||||
MenuItem {
|
||||
text: "New build plate";
|
||||
onTriggered: CuraApplication.newBuildPlate();
|
||||
}
|
||||
MenuSeparator {}
|
||||
MenuItem { action: Cura.Actions.homeCamera; }
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue