[PATCH 6/6] If we have defined a gas, default to that one.

Anton Lundin glance at acc.umu.se
Sat Dec 7 14:54:19 UTC 2013


If we start to define a gas, we should use that one by default instead
of air.

Signed-off-by: Anton Lundin <glance at acc.umu.se>
---
 qt-ui/diveplanner.cpp | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/qt-ui/diveplanner.cpp b/qt-ui/diveplanner.cpp
index c6d9fa5..ad4f600 100644
--- a/qt-ui/diveplanner.cpp
+++ b/qt-ui/diveplanner.cpp
@@ -1200,6 +1200,12 @@ int DivePlannerPointsModel::addStop(int milimeters, int seconds, int o2, int he,
 	} else if (seconds == 0 && milimeters == 0 && row == 0) {
 		milimeters = M_OR_FT(5, 15); // 5m / 15ft
 		seconds = 600; // 10 min
+		//Default to the first defined gas, if we got one.
+		cylinder_t *cyl = &stagingDive->cylinder[0];
+		if (cyl) {
+			o2 = cyl->gasmix.o2.permille;
+			he = cyl->gasmix.he.permille;
+		}
 	}
 	if (o2 != -1)
 		if (!addGas(o2, he))
-- 
1.8.3.2



More information about the subsurface mailing list