diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2019-03-29 18:29:08 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-04-12 18:19:07 +0300 |
commit | 837ab6c90b7952095c0dadf2de18db883b0f5ecf (patch) | |
tree | 3e6a619cdda0b5cc06308887a2df265fa95fdf2f /profile-widget/profilewidget2.h | |
parent | bfb6a55707ffe1ffc36fddf2c98b9d5f91721317 (diff) | |
download | subsurface-837ab6c90b7952095c0dadf2de18db883b0f5ecf.tar.gz |
Desktop: read tab-items from current_dive, not displayed_dive
The whole edit logic moved from displayed_dive to current_dive
and it became more and more tedious to keep these in sync.
Therefore, simply always display current_dive. The only exceptions
are the equipment tab and the planner, as these are not yet
integrated in the undo system. Once this is done, displayed_dive
can be removed.
Moreover, remove the clear parameter from updateDiveInfo().
Instead simply clear of there is no current_dive set.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'profile-widget/profilewidget2.h')
-rw-r--r-- | profile-widget/profilewidget2.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/profile-widget/profilewidget2.h b/profile-widget/profilewidget2.h index 4cf69efa6..fbc43c623 100644 --- a/profile-widget/profilewidget2.h +++ b/profile-widget/profilewidget2.h @@ -97,7 +97,7 @@ signals: void enableShortcuts(); void disableShortcuts(bool paste); void refreshDisplay(bool recreateDivelist); - void updateDiveInfo(bool clear); + void updateDiveInfo(); void editCurrentDive(); void dateTimeChangedItems(); |