mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-09 06:45:09 -06:00
Change Simple Mode "print brim" to print a brim or raft
CURA-2135
This commit is contained in:
parent
55942af9f7
commit
6e422e611c
1 changed files with 24 additions and 12 deletions
|
@ -213,7 +213,7 @@ Item
|
|||
id: adhesionHelperLabel
|
||||
anchors.left: parent.left
|
||||
anchors.leftMargin: UM.Theme.getSize("default_margin").width
|
||||
anchors.verticalCenter: brimCheckBox.verticalCenter
|
||||
anchors.verticalCenter: adhesionCheckBox.verticalCenter
|
||||
width: parent.width / 100 * 35 - 3 * UM.Theme.getSize("default_margin").width
|
||||
//: Bed adhesion label
|
||||
text: catalog.i18nc("@label", "Helper Parts:");
|
||||
|
@ -222,33 +222,45 @@ Item
|
|||
}
|
||||
|
||||
CheckBox{
|
||||
id: brimCheckBox
|
||||
property alias _hovered: brimMouseArea.containsMouse
|
||||
id: adhesionCheckBox
|
||||
property alias _hovered: adhesionMouseArea.containsMouse
|
||||
|
||||
anchors.top: parent.top
|
||||
anchors.left: adhesionHelperLabel.right
|
||||
anchors.leftMargin: UM.Theme.getSize("default_margin").width
|
||||
|
||||
//: Setting enable skirt adhesion checkbox
|
||||
text: catalog.i18nc("@option:check", "Print Brim");
|
||||
//: Setting enable printing build-plate adhesion helper checkbox
|
||||
text: catalog.i18nc("@option:check", "Print Build Plate Adhesion");
|
||||
style: UM.Theme.styles.checkbox;
|
||||
enabled: base.settingsEnabled
|
||||
|
||||
checked: platformAdhesionType.properties.value == "brim"
|
||||
checked: platformAdhesionType.properties.value != "skirt"
|
||||
|
||||
MouseArea {
|
||||
id: brimMouseArea
|
||||
id: adhesionMouseArea
|
||||
anchors.fill: parent
|
||||
hoverEnabled: true
|
||||
enabled: base.settingsEnabled
|
||||
onClicked:
|
||||
{
|
||||
platformAdhesionType.setPropertyValue("value", !parent.checked ? "brim" : "skirt")
|
||||
var adhesionType = "skirt";
|
||||
if(!parent.checked)
|
||||
{
|
||||
// Remove the "user" setting to see if the rest of the stack prescribes a brim or a raft
|
||||
platformAdhesionType.removeFromContainer(0);
|
||||
adhesionType = platformAdhesionType.properties.value;
|
||||
if(adhesionType == "skirt")
|
||||
{
|
||||
// If the rest of the stack doesn't prescribe an adhesion-type, default to a brim
|
||||
adhesionType = "brim";
|
||||
}
|
||||
}
|
||||
platformAdhesionType.setPropertyValue("value", adhesionType);
|
||||
}
|
||||
onEntered:
|
||||
{
|
||||
base.showTooltip(brimCheckBox, Qt.point(-brimCheckBox.x, 0),
|
||||
catalog.i18nc("@label", "Enable printing a brim. This will add a single-layer-thick flat area around your object which is easy to cut off afterwards."));
|
||||
base.showTooltip(adhesionCheckBox, Qt.point(-adhesionCheckBox.x, 0),
|
||||
catalog.i18nc("@label", "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards."));
|
||||
}
|
||||
onExited:
|
||||
{
|
||||
|
@ -274,7 +286,7 @@ Item
|
|||
visible: machineExtruderCount.properties.value <= 1
|
||||
property alias _hovered: supportMouseArea.containsMouse
|
||||
|
||||
anchors.top: brimCheckBox.bottom
|
||||
anchors.top: adhesionCheckBox.bottom
|
||||
anchors.topMargin: UM.Theme.getSize("default_margin").height
|
||||
anchors.left: supportHelperLabel.right
|
||||
anchors.leftMargin: UM.Theme.getSize("default_margin").width
|
||||
|
@ -311,7 +323,7 @@ Item
|
|||
visible: machineExtruderCount.properties.value > 1
|
||||
model: extruderModel
|
||||
|
||||
anchors.top: brimCheckBox.bottom
|
||||
anchors.top: adhesionCheckBox.bottom
|
||||
anchors.topMargin: UM.Theme.getSize("default_margin").height
|
||||
anchors.left: supportHelperLabel.right
|
||||
anchors.leftMargin: UM.Theme.getSize("default_margin").width
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue