Use repaint instead of update on the loading animation

This commit is contained in:
Konstantinos Sideris 2018-07-25 23:10:45 +03:00
parent 1f47a6af3a
commit a845ccb8d7
1 changed files with 1 additions and 1 deletions

View File

@ -81,5 +81,5 @@ void
LoadingIndicator::onTimeout()
{
angle_ = (angle_ + 45) % 360;
update();
repaint();
}