mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-21 13:47:51 -06:00
Fix placeholder text colour
It should use the same colour as the normal text, for now. Contributes to issue CURA-4148.
This commit is contained in:
parent
b52446ed99
commit
078b9e8b66
2 changed files with 2 additions and 0 deletions
|
@ -62,6 +62,7 @@ Item
|
||||||
style: TextFieldStyle
|
style: TextFieldStyle
|
||||||
{
|
{
|
||||||
textColor: UM.Theme.getColor("setting_control_text");
|
textColor: UM.Theme.getColor("setting_control_text");
|
||||||
|
placeholderTextColor: UM.Theme.getColor("setting_control_text")
|
||||||
font: UM.Theme.getFont("default");
|
font: UM.Theme.getFont("default");
|
||||||
background: Item {}
|
background: Item {}
|
||||||
}
|
}
|
||||||
|
|
|
@ -736,6 +736,7 @@ QtObject {
|
||||||
property Component text_field: Component {
|
property Component text_field: Component {
|
||||||
TextFieldStyle {
|
TextFieldStyle {
|
||||||
textColor: Theme.getColor("setting_control_text");
|
textColor: Theme.getColor("setting_control_text");
|
||||||
|
placeholderTextColor: Theme.getColor("setting_control_text")
|
||||||
font: Theme.getFont("default");
|
font: Theme.getFont("default");
|
||||||
|
|
||||||
background: Rectangle
|
background: Rectangle
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue