diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2019-08-30 17:38:54 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-09-06 11:48:47 -0700 |
commit | 488eb1542336088245841d79549e26938e2d3fd9 (patch) | |
tree | bba9ed5d849fa7ac8639078651582576b0ab4867 /desktop-widgets/mapwidget.h | |
parent | b39f2406c6a520f0b3743324744f3c55914adc52 (diff) | |
download | subsurface-488eb1542336088245841d79549e26938e2d3fd9.tar.gz |
Desktop: show all selected dive sites on click
When clicking a dive site on the map, the QML code would set
the selected dive site, but then all dives of dive sites in
the vicinity were set. But still only the clicked-on dive site
was shown.
Therefore, don't set the list of selected dive sites in QML,
but later in DiveListView::selectDives(), where we know all
the dives that were selected.
This, again, gives nasty entanglement of diverse widgets and
models.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'desktop-widgets/mapwidget.h')
-rw-r--r-- | desktop-widgets/mapwidget.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/desktop-widgets/mapwidget.h b/desktop-widgets/mapwidget.h index 9e05ce48f..9ebf70c04 100644 --- a/desktop-widgets/mapwidget.h +++ b/desktop-widgets/mapwidget.h @@ -24,6 +24,7 @@ public: static MapWidget *instance(); void reload(); void selectionChanged(); + void setSelected(const QVector<dive_site *> &divesites); bool editMode() const; public slots: |