From ada369bf08f5a73ebbec202e3d970410fed61811 Mon Sep 17 00:00:00 2001 From: Hugo Saint-Vignes Date: Thu, 18 Jun 2020 17:44:22 +0200 Subject: [PATCH] [apps/shared] Add comment for selectNonHiddenCellAtClippedLocation Change-Id: I0e0f7963274688facb467caa934f410e66c9f859 --- apps/shared/store_selectable_table_view.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/shared/store_selectable_table_view.cpp b/apps/shared/store_selectable_table_view.cpp index f7545ed4c..8ceb76f61 100644 --- a/apps/shared/store_selectable_table_view.cpp +++ b/apps/shared/store_selectable_table_view.cpp @@ -37,6 +37,7 @@ bool StoreSelectableTableView::selectNonHiddenCellAtClippedLocation(int i, int j if (j > 1 + numberOfPairsOfCurrentSeries) { j = 1 + numberOfPairsOfCurrentSeries; } + // if negative, j will be clipped in selectCellAtClippedLocation return selectCellAtClippedLocation(i, j); }