diff --git a/apps/graph/values/values_controller.cpp b/apps/graph/values/values_controller.cpp index 40af4afe5..28422c999 100644 --- a/apps/graph/values/values_controller.cpp +++ b/apps/graph/values/values_controller.cpp @@ -138,6 +138,9 @@ I18n::Message ValuesController::emptyMessage() { } void ValuesController::tableViewDidChangeSelection(SelectableTableView * t, int previousSelectedCellX, int previousSelectedCellY, bool withinTemporarySelection) { + if (withinTemporarySelection) { + return; + } const int i = selectedColumn(); const int j = selectedRow(); const int numberOfElementsInCol = numberOfElementsInColumn(i);