mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
[apps/shared] Fix error
Change-Id: I635363ea034c48fb5367cd1cbaefc0472f951d41
This commit is contained in:
@@ -113,7 +113,7 @@ bool FloatParameterController::textFieldDidFinishEditing(TextField * textField,
|
||||
}
|
||||
|
||||
void FloatParameterController::tableViewDidChangeSelection(SelectableTableView * t, int previousSelectedCellX, int previousSelectedCellY) {
|
||||
if (previousSelectedCellY >= 0 && previousSelectedCellX < numberOfRows()-1) {
|
||||
if (previousSelectedCellY >= 0 && previousSelectedCellY < numberOfRows()-1) {
|
||||
MessageTableCellWithEditableText * myCell = (MessageTableCellWithEditableText *)t->cellAtLocation(previousSelectedCellX, previousSelectedCellY);
|
||||
myCell->setEditing(false);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user