mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-25 07:33:57 -06:00
Don't show the hint message when the buildplate selector is shown.
Contributes to CURA-5570.
This commit is contained in:
parent
152005ab14
commit
848e99a4ba
1 changed files with 2 additions and 1 deletions
|
@ -533,6 +533,7 @@ Column
|
||||||
rightMargin: UM.Theme.getSize("sidebar_margin").width
|
rightMargin: UM.Theme.getSize("sidebar_margin").width
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO This was added to replace the buildplate selector. Remove this component when the feature is ready
|
||||||
Label
|
Label
|
||||||
{
|
{
|
||||||
id: materialCompatibilityLabel
|
id: materialCompatibilityLabel
|
||||||
|
@ -542,7 +543,7 @@ Column
|
||||||
text: catalog.i18nc("@label", "Use glue with this material combination")
|
text: catalog.i18nc("@label", "Use glue with this material combination")
|
||||||
font: UM.Theme.getFont("very_small")
|
font: UM.Theme.getFont("very_small")
|
||||||
color: UM.Theme.getColor("text")
|
color: UM.Theme.getColor("text")
|
||||||
visible: buildplateCompatibilityError || buildplateCompatibilityWarning
|
visible: CuraSDKVersion == "dev" ? false : buildplateCompatibilityError || buildplateCompatibilityWarning
|
||||||
wrapMode: Text.WordWrap
|
wrapMode: Text.WordWrap
|
||||||
opacity: 0.5
|
opacity: 0.5
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue