From a845ccb8d79ff23b9176ebb5b00992504fdbd940 Mon Sep 17 00:00:00 2001 From: Konstantinos Sideris Date: Wed, 25 Jul 2018 23:10:45 +0300 Subject: [PATCH] Use repaint instead of update on the loading animation --- src/ui/LoadingIndicator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/LoadingIndicator.cpp b/src/ui/LoadingIndicator.cpp index f64151ce..05b7fff5 100644 --- a/src/ui/LoadingIndicator.cpp +++ b/src/ui/LoadingIndicator.cpp @@ -81,5 +81,5 @@ void LoadingIndicator::onTimeout() { angle_ = (angle_ + 45) % 360; - update(); + repaint(); }