242 | @@ -243,7 +243,7 @@ static void BlockTipChanged(ClientModel *clientmodel, bool initialSync, int heig
243 | clientmodel->cachedBestHeaderTime = blockTime;
244 | }
245 | // if we are in-sync or if we notify a header update, update the UI regardless of last update time
246 | - if (fHeader || !initialSync || now - nLastUpdateNotification > MODEL_UPDATE_DELAY) {
247 | + if (fHeader && !fReindex || !initialSync || now - nLastUpdateNotification > MODEL_UPDATE_DELAY) {
please put parenthesis around fHeader && !fReindex to make it unambiguous to readers if that's what you meant