summaryrefslogtreecommitdiffstats
path: root/map-widget/qmlmapwidgethelper.cpp
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2019-08-30 16:51:59 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2019-09-06 11:48:47 -0700
commitb39f2406c6a520f0b3743324744f3c55914adc52 (patch)
tree8cfadbb34be79cf9e75d2280b70fc1d887380f49 /map-widget/qmlmapwidgethelper.cpp
parentcabe70be8079a69e159d46525fc8b283d9ec7c2a (diff)
downloadsubsurface-b39f2406c6a520f0b3743324744f3c55914adc52.tar.gz
Map: don't fully reset model on selection change
When changing the selection the MapLocationModel was reset. This lead to crashes on Qt-5.9 which are due to QML accessing data that was freed during model reset. This putative Qt bug doesn't happen on newer Qt versions. At least Qt-5.12 is known to work. Instead of fighting the bug, let's simply not reset the model but send a dataChanged() for every element of the MapLocationModel. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'map-widget/qmlmapwidgethelper.cpp')
-rw-r--r--map-widget/qmlmapwidgethelper.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/map-widget/qmlmapwidgethelper.cpp b/map-widget/qmlmapwidgethelper.cpp
index feaccdbef..02bfa78a2 100644
--- a/map-widget/qmlmapwidgethelper.cpp
+++ b/map-widget/qmlmapwidgethelper.cpp
@@ -113,6 +113,11 @@ void MapWidgetHelper::reloadMapLocations()
m_mapLocationModel->reload(m_map);
}
+void MapWidgetHelper::selectionChanged()
+{
+ m_mapLocationModel->selectionChanged();
+}
+
void MapWidgetHelper::selectedLocationChanged(struct dive_site *ds_in)
{
int idx;