diff options
-rw-r--r-- | qt-ui/maintab.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/qt-ui/maintab.cpp b/qt-ui/maintab.cpp index e553712e1..5e81272e2 100644 --- a/qt-ui/maintab.cpp +++ b/qt-ui/maintab.cpp @@ -749,18 +749,6 @@ void MainTab::acceptChanges() find_new_trip_start_time(current_dive->divetrip); } if (editMode == ADD || editMode == MANUALLY_ADDED_DIVE) { - // clean up the dive data (get duration, depth information from samples) - // remove the pressures from the samples (as those prevent the user from - // being able to manually set the start and end pressure) - struct sample *sample = current_dc->sample; - for (int i = 0; i < current_dc->samples; i++, sample++) - sample->cylinderpressure.mbar = 0; - for (int i = 0; i < MAX_CYLINDERS; i++) { - cylinder_t *cyl = ¤t_dive->cylinder[i]; - cyl->start.mbar = cyl->sample_start.mbar; - cyl->end.mbar = cyl->sample_end.mbar; - cyl->sample_end.mbar = cyl->sample_start.mbar = 0; - } fixup_dive(current_dive); if (dive_table.nr == 1) current_dive->number = 1; |