Merge branch 'CURA-8066_Change_tableView_colors' of github.com:Ultimaker/Cura

This commit is contained in:
Jaime van Kessel 2021-03-25 11:33:54 +01:00
commit 46c4a70b50
No known key found for this signature in database
GPG Key ID: 3710727397403C91

View File

@ -18,7 +18,7 @@ OldControls.TableView
Label
{
id: tableCellLabel
color: UM.Theme.getColor("text")
color: styleData.selected ? UM.Theme.getColor("primary_button_text") : UM.Theme.getColor("text")
elide: Text.ElideRight
text: styleData.value
anchors.fill: parent
@ -29,7 +29,7 @@ OldControls.TableView
rowDelegate: Rectangle
{
color: styleData.selected ? UM.Theme.getColor("secondary") : UM.Theme.getColor("main_background")
color: styleData.selected ? UM.Theme.getColor("primary_button") : UM.Theme.getColor("main_background")
height: UM.Theme.getSize("table_row").height
}