summaryrefslogtreecommitdiffstats
path: root/desktop-widgets/command_divelist.h
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2019-05-19 18:43:21 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2019-05-20 21:23:16 -0700
commita124198275e2b6cbb11795a8c328235d8154d148 (patch)
tree6e64a5a69c90adf9523d28898ee95333ca7ab695 /desktop-widgets/command_divelist.h
parent4fe9b39cdbb5839830281820621059cefc26a03a (diff)
downloadsubsurface-a124198275e2b6cbb11795a8c328235d8154d148.tar.gz
Undo: be smarter about dive computer shown after deletion
When deleting a dive computer, don't just show the first dive computer, but the next one in the list (if it exists). Moreover, on undo jump to the previously shown dive computer. Do this by keeping track of the before and after dive computer number in the undo command. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'desktop-widgets/command_divelist.h')
-rw-r--r--desktop-widgets/command_divelist.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/desktop-widgets/command_divelist.h b/desktop-widgets/command_divelist.h
index 7de168e9a..152c7365b 100644
--- a/desktop-widgets/command_divelist.h
+++ b/desktop-widgets/command_divelist.h
@@ -244,7 +244,7 @@ class DiveComputerBase : public DiveListBase {
protected:
// old_dive must be a dive known to the core.
// new_dive must be new dive whose ownership is taken.
- DiveComputerBase(dive *old_dive, dive *new_dive);
+ DiveComputerBase(dive *old_dive, dive *new_dive, int dc_nr_after);
private:
void undoit() override;
void redoit() override;
@@ -254,6 +254,7 @@ protected:
// For redo and undo
DivesAndTripsToAdd diveToAdd;
DivesAndSitesToRemove diveToRemove;
+ int dc_nr_before, dc_nr_after;
};
class MoveDiveComputerToFront : public DiveComputerBase {