From 295b1b78d888b528f7a5a23411b1a82d4b39eed1 Mon Sep 17 00:00:00 2001 From: "Robert C. Helling" Date: Fri, 10 Mar 2017 07:22:31 +0100 Subject: Make depth conversion work for negative depths This is needed in the altitude pressure conversion as there negative altitudes are possible (for diving in the netherlands or the Dead Sea). Signed-off-by: Robert C. Helling --- qt-models/diveplannermodel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'qt-models') diff --git a/qt-models/diveplannermodel.cpp b/qt-models/diveplannermodel.cpp index 4a33b15c3..0327a6f6f 100644 --- a/qt-models/diveplannermodel.cpp +++ b/qt-models/diveplannermodel.cpp @@ -288,7 +288,7 @@ bool DivePlannerPointsModel::setData(const QModelIndex &index, const QVariant &v switch (index.column()) { case DEPTH: if (value.toInt() >= 0) { - p.depth = units_to_depth(value.toInt()); + p.depth = units_to_depth(value.toInt()).mm; if (updateMaxDepth()) CylindersModel::instance()->updateBestMixes(); } -- cgit v1.2.3-70-g09d2