[apps/sequence|graph] Fix bug: when validating new interval parameters,

jump to the values table

Change-Id: Id56587dea29fcca18cc34045a6c93f2f740564e2
This commit is contained in:
Émilie Feral
2017-05-10 13:47:21 +02:00
parent 19e4d77536
commit de5fbe54d4
4 changed files with 14 additions and 1 deletions

View File

@@ -67,6 +67,14 @@ int IntervalParameterController::reusableParameterCellCount(int type) {
return k_totalNumberOfCell;
}
void IntervalParameterController::buttonAction() {
StackViewController * stack = stackController();
stack->pop();
if (stack->depth() > 1) {
stack->pop();
}
}
View * IntervalParameterController::loadView() {
SelectableTableView * tableView = (SelectableTableView *)FloatParameterController::loadView();
for (int i = 0; i < k_totalNumberOfCell; i++) {