From 8349f899b7c06594a39043d264ca7d8aa7d45204 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89milie=20Feral?= Date: Wed, 30 Aug 2017 13:20:59 +0200 Subject: [PATCH] [home] Fix reload view --- apps/home/controller.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/home/controller.cpp b/apps/home/controller.cpp index 6192d3643..ea72ed137 100644 --- a/apps/home/controller.cpp +++ b/apps/home/controller.cpp @@ -120,7 +120,7 @@ void Controller::tableViewDidChangeSelection(SelectableTableView * t, int previo * redrawing takes time and is visible at scrolling. Here, we avoid the * background complete redrawing but the code is a bit * clumsy. */ - if (m_container->numberOfApps()%2 == 1 && t->selectedColumn() == k_numberOfColumns -1) { + if (m_container->numberOfApps()%2 == 0 && t->selectedColumn() == k_numberOfColumns -1) { m_view.reloadBottomRightCorner(this); } /* To prevent the selectable table view to select cells that are unvisible,