Fixed extruder per gcode layer. Created show_caution preference for gcode reader. CURA-3390

This commit is contained in:
Jack Ha 2017-03-15 14:29:59 +01:00
parent 1e75c84662
commit 02bb575ced
2 changed files with 32 additions and 7 deletions

View file

@ -273,6 +273,25 @@ UM.PreferencesPage
}
}
UM.TooltipArea
{
width: childrenRect.width;
height: childrenRect.height;
text: catalog.i18nc("@info:tooltip","Show caution message in gcode reader.")
CheckBox
{
id: gcodeShowCautionCheckbox
checked: boolCheck(UM.Preferences.getValue("gcodereader/show_caution"))
onClicked: UM.Preferences.setValue("gcodereader/show_caution", checked)
text: catalog.i18nc("@option:check","Caution message in gcode reader");
}
}
UM.TooltipArea {
width: childrenRect.width
height: childrenRect.height