From 71de56f87acea57bc9c9455ccebc85603ffde656 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89milie=20Feral?= Date: Thu, 23 Jan 2020 11:08:47 +0100 Subject: [PATCH] [apps/calculation] HistoryViewCell: fix setHighlighted to reload subviews highlight --- apps/calculation/history_view_cell.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/calculation/history_view_cell.cpp b/apps/calculation/history_view_cell.cpp index ef4190bd6..e6fa2a706 100644 --- a/apps/calculation/history_view_cell.cpp +++ b/apps/calculation/history_view_cell.cpp @@ -61,6 +61,7 @@ void HistoryViewCell::setHighlighted(bool highlight) { return; } m_highlighted = highlight; + reloadSubviewHighlight(); // Re-layout as the ellispsis subview might have appear/disappear layoutSubviews(); }