mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-19 22:00:28 +01:00
[apps/sequence] Fix error
Change-Id: I8bd5bd3f45c78dcaf0af4b072e75c147db29f02c
This commit is contained in:
@@ -20,7 +20,7 @@ void IntervalParameterController::willDisplayCellForIndex(HighlightCell * cell,
|
||||
}
|
||||
|
||||
bool IntervalParameterController::setParameterAtIndex(int parameterIndex, float f) {
|
||||
if (f <= 0) {
|
||||
if (f < 0) {
|
||||
return false;
|
||||
}
|
||||
SetterPointer setters[k_totalNumberOfCell] = {&Interval::setStart, &Interval::setEnd, &Interval::setStep};
|
||||
|
||||
Reference in New Issue
Block a user