diff options
author | Lubomir I. Ivanov <neolit123@gmail.com> | 2017-07-19 23:51:39 +0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-07-28 07:31:11 -0700 |
commit | 24d5485a884a501e00b0a8130add6078b08654f9 (patch) | |
tree | 713c0ca481799218162e0e0050442532bbc29ad9 | |
parent | 6c640158e8c43e8aa817fdbdce0c8ac2bfc74a31 (diff) | |
download | subsurface-24d5485a884a501e00b0a8130add6078b08654f9.tar.gz |
mapwidget.qml: update the Z order of selected markers
If a marker is selected bring it up front (high Z value) else set
it behind everything else.
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
-rw-r--r-- | mobile-widgets/qml/MapWidget.qml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mobile-widgets/qml/MapWidget.qml b/mobile-widgets/qml/MapWidget.qml index b8f8b00b9..c3974f9e3 100644 --- a/mobile-widgets/qml/MapWidget.qml +++ b/mobile-widgets/qml/MapWidget.qml @@ -41,6 +41,7 @@ Item { anchorPoint.x: 0 anchorPoint.y: mapItemImage.height coordinate: model.coordinate + z: mapHelper.model.selectedUuid === model.uuid ? mapHelper.model.count - 1 : 0 sourceItem: Image { id: mapItemImage; source: "qrc:///mapwidget-marker" + (mapHelper.model.selectedUuid === model.uuid ? "-selected" : ""); |