1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-16 12:55:12 +03:00

300m/s as a max for the vario in Logical Switches

This commit is contained in:
bsongis 2014-06-22 15:23:56 +02:00
parent 4712383523
commit 9f522beac4
2 changed files with 4 additions and 4 deletions

View file

@ -203,8 +203,8 @@ RawSourceRange RawSource::getRange(const ModelData & model, const GeneralSetting
break;
case TELEMETRY_SOURCE_VERTICAL_SPEED:
result.step = 0.1;
result.min = singleprec ? -12.5 : -20.0;
result.max = singleprec ? 13.0 : 20.0;
result.min = singleprec ? -12.5 : -300.0;
result.max = singleprec ? 13.0 : 300.0;
result.decimals = 1;
result.unit = QObject::tr("m/s");
break;