[apps/graph] ValuesController: if the selection change is temporary, we

don't need to avoid selecting hid cells
This commit is contained in:
Émilie Feral
2019-09-23 15:34:04 +02:00
committed by LeaNumworks
parent 743bf7cf28
commit 3f329182b0

View File

@@ -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);