mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
mapwidget.qml: use darker text color for the deselected markers
Use "lightgrey" instead of "white" for deselected markers. Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
This commit is contained in:
parent
5270688483
commit
f6896c3b8e
1 changed files with 1 additions and 1 deletions
|
@ -99,7 +99,7 @@ Item {
|
|||
id: mapItemText
|
||||
text: model.name
|
||||
font.pointSize: 11.0
|
||||
color: "white"
|
||||
color: mapHelper.model.selectedUuid === model.uuid ? "white" : "lightgrey"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue