[apps/regression][apps/graph/graph] Jump to the graph view once setting

a new abscissa/ ordinate in the go to page

Change-Id: I1e27e39c04950d902158a6e89024931f2fc78e1e
This commit is contained in:
Émilie Feral
2017-01-31 16:02:45 +01:00
parent 5746672bb9
commit ab65e832ea
4 changed files with 17 additions and 0 deletions

View File

@@ -69,5 +69,12 @@ void GoToParameterController::willDisplayCellForIndex(TableViewCell * cell, int
FloatParameterController::willDisplayCellForIndex(cell, index);
}
bool GoToParameterController::textFieldDidFinishEditing(TextField * textField, const char * text) {
FloatParameterController::textFieldDidFinishEditing(textField, text);
StackViewController * stack = (StackViewController *)parentResponder();
stack->pop();
stack->pop();
return true;
}
}