aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--qt-models/diveplannermodel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-models/diveplannermodel.cpp b/qt-models/diveplannermodel.cpp
index bd90e4dfb..35f696c01 100644
--- a/qt-models/diveplannermodel.cpp
+++ b/qt-models/diveplannermodel.cpp
@@ -119,7 +119,7 @@ void DivePlannerPointsModel::loadFromDive(dive *d)
}
}
// make sure we get the last point right so the duration is correct
- addStop(0, d->dc.duration.seconds,cylinderid, 0, true);
+ if (!hasMarkedSamples) addStop(0, d->dc.duration.seconds,cylinderid, 0, true);
recalc = oldRec;
emitDataChanged();
}