diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2019-10-06 21:01:21 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-10-26 11:36:23 -0700 |
commit | c479c5ca36648e54f58f782d7af2935f77c693b1 (patch) | |
tree | 9d9ad8cd3fe04a7542556bbea41ba0ab7927da92 /qt-models | |
parent | 7b730602c6ac92c561c5ccb6a0dbf725a70fa963 (diff) | |
download | subsurface-c479c5ca36648e54f58f782d7af2935f77c693b1.tar.gz |
Desktop: use undo command when replanning dive
Instead of copying the displayed dive, generate an undo command.
This makes the replanning an undoable action and fixes a bug
where the dive details have not been updated correctly.
Fixes #2280
Reported-by: Stefan Fuchs <sfuchs@gmx.de>
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'qt-models')
-rw-r--r-- | qt-models/diveplannermodel.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/qt-models/diveplannermodel.cpp b/qt-models/diveplannermodel.cpp index b8f8d54a4..d2fe5e84a 100644 --- a/qt-models/diveplannermodel.cpp +++ b/qt-models/diveplannermodel.cpp @@ -6,7 +6,6 @@ #include "qt-models/models.h" #include "core/device.h" #include "core/qthelper.h" -#include "core/divelist.h" // for mark_divelist_changed() #include "core/settings/qPrefDivePlanner.h" #include "desktop-widgets/command.h" #include "core/gettextfromc.h" @@ -1176,8 +1175,7 @@ void DivePlannerPointsModel::createPlan(bool replanCopy) Command::addDive(&displayed_dive, false, false); } else { // we were planning an old dive and rewrite the plan - mark_divelist_changed(true); - copy_dive(&displayed_dive, current_dive); + Command::replanDive(&displayed_dive); } // Remove and clean the diveplan, so we don't delete |