diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2014-02-11 09:55:14 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-02-11 12:35:54 -0800 |
commit | d1c4bcf570cdab98785a453855428a1e8dcc944f (patch) | |
tree | 95c28bc2de064fd36b4d77d524c7f3053f5ee174 /qt-ui/profile/profilewidget2.cpp | |
parent | 73d60574243d7ea8a41726a3cd21d412697813e3 (diff) | |
download | subsurface-d1c4bcf570cdab98785a453855428a1e8dcc944f.tar.gz |
New profile: enable switching between dive computers
This was mostly in place, just needed to be hooked up.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/profile/profilewidget2.cpp')
-rw-r--r-- | qt-ui/profile/profilewidget2.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/qt-ui/profile/profilewidget2.cpp b/qt-ui/profile/profilewidget2.cpp index 42e95f620..4ed637cd6 100644 --- a/qt-ui/profile/profilewidget2.cpp +++ b/qt-ui/profile/profilewidget2.cpp @@ -271,12 +271,13 @@ void ProfileWidget2::plotDives(QList<dive*> dives) if (!d) return; - // No need to do this again if we are already showing that dive, - // so we check the unique id of the dive against the one we are + // No need to do this again if we are already showing the same dive + // computer of the same dive, so we check the unique id of the dive + // and the selected dive computer number against the ones we are // showing (can't compare the dive pointers as those might change). // I'm unclear what the semantics are supposed to be if we actually // use more than one 'dives' as argument - so ignoring that right now :-) - if (d->id == dataModel->id()) + if (d->id == dataModel->id() && dc_number == dataModel->dcShown()) return; setProfileState(); |