mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Map: calculate the z value in the model
Since not fully reloading the map on selection change, the selected sites were not moved to the top. Not calculating the z-value in QML, but making it a simple model property helps. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
b766525183
commit
652b78657e
3 changed files with 8 additions and 2 deletions
|
@ -56,7 +56,7 @@ Item {
|
|||
anchorPoint.x: 0
|
||||
anchorPoint.y: mapItemImage.height
|
||||
coordinate: model.coordinate
|
||||
z: mapHelper.model.isSelected(model.divesite) ? mapHelper.model.count - 1 : 0
|
||||
z: model.z
|
||||
sourceItem: Image {
|
||||
id: mapItemImage
|
||||
source: model.pixmap
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue