Make button tooltip text use the dark color from the palette

This fixes a regression where tooltip text was white
This commit is contained in:
Arjen Hiemstra 2015-06-03 21:00:58 +02:00
parent 367b8791ae
commit 24a8edd2ae
2 changed files with 2 additions and 1 deletions

View File

@ -73,7 +73,7 @@ QtObject {
anchors.horizontalCenter: parent.horizontalCenter; anchors.horizontalCenter: parent.horizontalCenter;
text: control.text; text: control.text;
font: UM.Theme.fonts.button_tooltip; font: UM.Theme.fonts.button_tooltip;
color: UM.Theme.colors.button_text; color: UM.Theme.colors.button_tooltip_text;
} }
} }
} }

View File

@ -63,6 +63,7 @@
"button_active_hover": [34, 150, 190, 255], "button_active_hover": [34, 150, 190, 255],
"button_text": [255, 255, 255, 255], "button_text": [255, 255, 255, 255],
"button_disabled": [245, 245, 245, 255], "button_disabled": [245, 245, 245, 255],
"button_tooltip_text": [35, 35, 35, 255],
"scrollbar_background": [245, 245, 245, 255], "scrollbar_background": [245, 245, 245, 255],
"scrollbar_handle": [205, 202, 201, 255], "scrollbar_handle": [205, 202, 201, 255],