summaryrefslogtreecommitdiffstats
path: root/mobile-widgets
diff options
context:
space:
mode:
authorGravatar Lubomir I. Ivanov <neolit123@gmail.com>2017-07-28 00:30:18 +0300
committerGravatar Dirk Hohndel <dirk@hohndel.org>2017-07-28 07:31:11 -0700
commitf6896c3b8e9c29aaba0715aea92687b2d110d0ec (patch)
tree584030e80cab36536ed23bce6e2c86e7dc72747c /mobile-widgets
parent52706884835b112fd667d97e1522eb63a0cc3c5a (diff)
downloadsubsurface-f6896c3b8e9c29aaba0715aea92687b2d110d0ec.tar.gz
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>
Diffstat (limited to 'mobile-widgets')
-rw-r--r--mobile-widgets/qml/MapWidget.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile-widgets/qml/MapWidget.qml b/mobile-widgets/qml/MapWidget.qml
index 20bb2a442..beb1b1b75 100644
--- a/mobile-widgets/qml/MapWidget.qml
+++ b/mobile-widgets/qml/MapWidget.qml
@@ -99,7 +99,7 @@ Item {
id: mapItemText
text: model.name
font.pointSize: 11.0
- color: "white"
+ color: mapHelper.model.selectedUuid === model.uuid ? "white" : "lightgrey"
}
}
}