diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2020-05-05 11:51:20 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-05-06 11:44:22 -0700 |
commit | 16a35a8bbe2bd16398667795fe3f5c4a41beaf3e (patch) | |
tree | ce334102b3e5c4663918b160ee033537edb8e210 /desktop-widgets/tab-widgets/TabDiveInformation.h | |
parent | 30133946e0354339078dacb18869ae09747f2caf (diff) | |
download | subsurface-16a35a8bbe2bd16398667795fe3f5c4a41beaf3e.tar.gz |
desktop: update information tab when cylinders change
The SAC rate, etc were only updated when switching between dives.
They should always be updated when an undo command changes (adds,
edits, removes) the cylinders of a dive.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'desktop-widgets/tab-widgets/TabDiveInformation.h')
-rw-r--r-- | desktop-widgets/tab-widgets/TabDiveInformation.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/desktop-widgets/tab-widgets/TabDiveInformation.h b/desktop-widgets/tab-widgets/TabDiveInformation.h index f7c9022c9..8efa71d44 100644 --- a/desktop-widgets/tab-widgets/TabDiveInformation.h +++ b/desktop-widgets/tab-widgets/TabDiveInformation.h @@ -18,6 +18,7 @@ public: void clear() override; private slots: void divesChanged(const QVector<dive *> &dives, DiveField field); + void cylinderChanged(dive *d); void diveModeChanged(int index); void on_atmPressVal_editingFinished(); void on_atmPressType_currentIndexChanged(int index); |