Fix theming

CURA-6435
This commit is contained in:
Lipu Fei 2019-04-17 08:41:13 +02:00
parent 9b603d1f4b
commit 904a8ab26c
19 changed files with 81 additions and 10 deletions

View file

@ -41,6 +41,7 @@ UM.TooltipArea
anchors.top: parent.top
anchors.left: parent.left
font: UM.Theme.getFont("medium_bold")
color: UM.Theme.getColor("text")
renderType: Text.NativeRendering
}
@ -59,13 +60,16 @@ UM.TooltipArea
hoverEnabled: true
selectByMouse: true
text: (propertyProvider.properties.value) ? propertyProvider.properties.value : ""
font: UM.Theme.getFont("fixed")
renderType: Text.NativeRendering
text: (propertyProvider.properties.value) ? propertyProvider.properties.value : ""
color: UM.Theme.getColor("text")
wrapMode: TextEdit.NoWrap
background: Rectangle
{
color: UM.Theme.getColor("main_background")
border.color:
{
if (!gcodeTextArea.enabled)