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:
Lubomir I. Ivanov 2017-07-28 00:30:18 +03:00 committed by Dirk Hohndel
parent 5270688483
commit f6896c3b8e

View file

@ -99,7 +99,7 @@ Item {
id: mapItemText
text: model.name
font.pointSize: 11.0
color: "white"
color: mapHelper.model.selectedUuid === model.uuid ? "white" : "lightgrey"
}
}
}