summary refs log tree commit diff
path: root/src/ui/LoadingIndicator.cpp
diff options
context:
space:
mode:
authorKonstantinos Sideris <sideris.konstantin@gmail.com>2018-07-25 23:10:45 +0300
committerKonstantinos Sideris <sideris.konstantin@gmail.com>2018-07-25 23:10:45 +0300
commita845ccb8d79ff23b9176ebb5b00992504fdbd940 (patch)
treec5c7ffe5849f35e28c12020a56be65644dff1481 /src/ui/LoadingIndicator.cpp
parentImprove the style of snackbar a bit (diff)
downloadnheko-a845ccb8d79ff23b9176ebb5b00992504fdbd940.tar.xz
Use repaint instead of update on the loading animation
Diffstat (limited to 'src/ui/LoadingIndicator.cpp')
-rw-r--r--src/ui/LoadingIndicator.cpp2
1 files changed, 1 insertions, 1 deletions
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(); }