Fix Gaps - Don't fill stationary gaps shorter than tolerance

Continuation of e75ab10
This commit is contained in:
Alejandro Martinez
2025-09-22 18:12:26 -03:00
parent e75ab10772
commit 36c98119d4

View File

@@ -262,7 +262,7 @@ FixGaps::postProcess(RideFile *ride, DataProcessorConfig *config=0, QString op="
}
// stationary or greater than stop seconds... fill with zeroes
} else if (stationary || gap > stop) {
} else if (stationary && gap >= tolerance || gap > stop) {
dropouts++;
dropouttime += gap;