1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-21 15:25:17 +03:00

Issue #860 fixed

This commit is contained in:
bsongis 2014-03-25 19:18:28 +01:00
parent da292d3d4c
commit c5b0e79e99
3 changed files with 25 additions and 1 deletions

View file

@ -246,7 +246,7 @@ void CurveGroup::update()
if (lastType != curve.type) {
lastType = curve.type;
curveValueCB->clear();
for (int i=-numcurves; i<numcurves; i++) {
for (int i=-numcurves; i<=numcurves; i++) {
curveValueCB->addItem(CurveReference(CurveReference::CURVE_REF_CUSTOM, i).toString());
}
}