adding warning to settings not in whitelist

CURA-11403
This commit is contained in:
Saumya Jain 2024-03-01 11:53:05 +01:00
parent 25b6ccd087
commit 9633a8e9d4

View File

@ -19,7 +19,7 @@ RowLayout
Layout.preferredWidth: UM.Theme.getSize("setting").width Layout.preferredWidth: UM.Theme.getSize("setting").width
checked: modelData.selected checked: modelData.selected
onClicked: modelData.selected = checked onClicked: modelData.selected = checked
tooltip: modelData.selectable ? "" :catalog.i18nc("@tooltip", "This setting may not perform well while exporting in UCP. Users are asked to add it at their own risk")
} }
UM.Label UM.Label
@ -30,9 +30,10 @@ RowLayout
UM.HelpIcon UM.HelpIcon
{ {
UM.I18nCatalog { id: catalog; name: "cura" } UM.I18nCatalog { id: catalog; name: "cura" }
text: catalog.i18nc("@tooltip", text: catalog.i18nc("@tooltip",
"This setting can't be exported because it depends on the used printer capacities") "This setting may not perform well while exporting in UCP, Users are asked to add it at their own risk")
visible: !modelData.selectable visible: !modelData.selectable
} }
} }