mirror of
https://github.com/opentx/opentx.git
synced 2025-07-23 16:25:16 +03:00
Bad initialization of weight in the MixerDialog (when no GVars)
This commit is contained in:
parent
7e147c71c1
commit
6c86cada2c
1 changed files with 1 additions and 1 deletions
|
@ -158,7 +158,7 @@ GVarGroup::GVarGroup(QCheckBox *weightGV, QSpinBox *weightSB, QComboBox *weightC
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
weightGV->hide();
|
weightGV->hide();
|
||||||
if (weight > maxi || weight < -mini) {
|
if (weight > maxi || weight < mini) {
|
||||||
weight = deflt;
|
weight = deflt;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue