From a7969d108376dee6fd11d50bc22c1c5056a2562d Mon Sep 17 00:00:00 2001 From: "Robert C. Helling" Date: Mon, 7 Jul 2014 13:51:20 +0200 Subject: [PATCH] Planner: don't allow negative depths This patch allows only non-negative depths in the divepoints table as negative depths confuse the planenr/deco algortihm. The spinbox appearing in the table should get a setMinimum(0) but I was not able to find the correct way to implement that. Signed-off-by: Robert C. Helling Signed-off-by: Dirk Hohndel --- qt-ui/diveplanner.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/qt-ui/diveplanner.cpp b/qt-ui/diveplanner.cpp index 08e67e00a..631d605cf 100644 --- a/qt-ui/diveplanner.cpp +++ b/qt-ui/diveplanner.cpp @@ -545,7 +545,8 @@ bool DivePlannerPointsModel::setData(const QModelIndex &index, const QVariant &v divedatapoint &p = divepoints[index.row()]; switch (index.column()) { case DEPTH: - p.depth = units_to_depth(value.toInt()); + if (value.toInt() >= 0) + p.depth = units_to_depth(value.toInt()); break; case RUNTIME: p.time = value.toInt() * 60;