Last gas used will be used on new dive planner point.

This patch makes the last gas used on the planner the
default.

Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org>
This commit is contained in:
Tomaz Canabrava 2013-09-09 20:45:03 +00:00
parent 167a55f6f5
commit 813722633d

View file

@ -1040,9 +1040,15 @@ int DivePlannerPointsModel::addStop(int meters, int minutes, const QString& gas,
divedatapoint point;
point.depth = meters;
point.time = minutes;
point.o2 = 209;
point.he = 0;
point.po2 = 0;
if (row == 0){
point.o2 = 209;
point.he = 0;
point.po2 = 0;
}else{
divedatapoint before = at(row-1);
point.o2 = before.o2;
point.he = before.he;
}
divepoints.append( point );
std::sort(divepoints.begin(), divepoints.end(), divePointsLessThan);
endInsertRows();