Skip to content

Commit 5f72771

Browse files
committed
LP-551 Output tab: Allow min=max=neutral values, used with resetActuators() in input calibration.
1 parent e281a03 commit 5f72771

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ground/gcs/src/plugins/config/outputchannelform.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ void OutputChannelForm::setChannelRange()
275275

276276
// Normal motor will be *** never *** reversed : without arming a "Min" value (like 1900) can be applied !
277277
if (isNormalMotor()) {
278-
if (minValue >= maxValue) {
278+
if (minValue > maxValue) {
279279
// Keep old values
280280
ui->actuatorMin->setValue(oldMini);
281281
ui->actuatorMax->setValue(oldMaxi);

0 commit comments

Comments
 (0)