diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2019-11-30 15:51:34 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-12-03 20:55:58 -0800 |
commit | a6fa6cdb410514ba61b8886d3acadd4500c1d86e (patch) | |
tree | 017877ddaa99ce88023e2c8a07bd222ad19b00b9 /commands/command_edit.h | |
parent | 7c024f12d2123e08c272cefb2991623bc1da107a (diff) | |
download | subsurface-a6fa6cdb410514ba61b8886d3acadd4500c1d86e.tar.gz |
Undo: make profile-editing undoable
Recently, undo of dive-replanning was introduced. Therefore,
it appears logical to do the same thing for editing of the
profile of manually added dives.
For now, use the same undo-command, just change the displayed
text from "replan dive" to "edit profile". Move the fixup dive
call into the undo-command.
Eventually, every action on the profile should be made undoable.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'commands/command_edit.h')
-rw-r--r-- | commands/command_edit.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/commands/command_edit.h b/commands/command_edit.h index cd12eaa04..c3acf9d48 100644 --- a/commands/command_edit.h +++ b/commands/command_edit.h @@ -320,7 +320,9 @@ class ReplanDive : public Base { duration_t duration; int salinity; public: - ReplanDive(dive *source); // Dive computer(s) and cylinders(s) of the source dive will be reset! + // Dive computer(s) and cylinders(s) of the source dive will be reset! + // If edit_profile is true, the text will be changed from "replan dive" to "edit profile". + ReplanDive(dive *source, bool edit_profile); ~ReplanDive(); private: void undo() override; |