diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2019-05-17 22:22:55 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-05-20 21:23:16 -0700 |
commit | eba6e76b963115a77b5f8607bc6c3ea1040a466f (patch) | |
tree | e926eb7112a902561c1b66f4d6a342ec2a7134b5 /desktop-widgets/command.h | |
parent | f0307abf50397da79671ce79707eb4ce1f78acd0 (diff) | |
download | subsurface-eba6e76b963115a77b5f8607bc6c3ea1040a466f.tar.gz |
Undo: make "move dive computer to front" undoable
Instead of the elegant solution that just modifies the dive,
keep two copies and add either the old or the new copy. This
is primitive, but it trivially keeps the dives in the right order.
The order might change on renumbering the dive computers.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'desktop-widgets/command.h')
-rw-r--r-- | desktop-widgets/command.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/desktop-widgets/command.h b/desktop-widgets/command.h index 2686255ee..543e3bcae 100644 --- a/desktop-widgets/command.h +++ b/desktop-widgets/command.h @@ -36,6 +36,7 @@ void autogroupDives(); void mergeTrips(dive_trip *trip1, dive_trip *trip2); void splitDives(dive *d, duration_t time); void splitDiveComputer(dive *d, int dc_num); +void moveDiveComputerToFront(dive *d, int dc_num); void mergeDives(const QVector <dive *> &dives); // 3) Dive-site related commands |