mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-12 21:38:58 +08:00
Fix QML warning about no variable 'transparent' existing
It's a colour name. It should be within quotes here. Contributes to issue CURA-8849.
This commit is contained in:
parent
aee614ff9b
commit
b8e3793631
@ -62,7 +62,7 @@ Rectangle
|
|||||||
radius: width
|
radius: width
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
visible: icon == ""
|
visible: icon == ""
|
||||||
color: transparent
|
color: "transparent"
|
||||||
border.width: UM.Theme.getSize("thick_lining").width
|
border.width: UM.Theme.getSize("thick_lining").width
|
||||||
border.color: UM.Theme.getColor("text")
|
border.color: UM.Theme.getColor("text")
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user