diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2013-11-11 18:13:55 +0900 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-11-11 18:13:55 +0900 |
commit | cd1149e57fb077c2f3dbf0fce7a1a9478feb6743 (patch) | |
tree | 995a2715515608e9adbca6206b829f5ba75639e9 | |
parent | 0a8892379d20c0ee81dd4339019b5d4b1468194e (diff) | |
download | subsurface-cd1149e57fb077c2f3dbf0fce7a1a9478feb6743.tar.gz |
When entering a new point, pick the previous gas by default
This is much more useful than always picking air.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | qt-ui/diveplanner.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/qt-ui/diveplanner.cpp b/qt-ui/diveplanner.cpp index e31d88583..14118c519 100644 --- a/qt-ui/diveplanner.cpp +++ b/qt-ui/diveplanner.cpp @@ -1169,7 +1169,10 @@ int DivePlannerPointsModel::addStop(int milimeters, int minutes, int o2, int he, break; } } - + if (row > 1 && o2 == -1) { // this means "take the current gas" + o2 = divepoints.at(row - 1).o2; + he = divepoints.at(row - 1).he; + } // add the new stop beginInsertRows(QModelIndex(), row, row); divedatapoint point; |