progress spinner fix, new lines in messages now display again

This commit is contained in:
Blue 2020-01-27 18:07:38 +03:00
parent 565449f176
commit a4136ff9fe
2 changed files with 3 additions and 2 deletions

View file

@ -39,9 +39,9 @@ Progress::Progress(quint16 p_size, QWidget* parent):
pixmap->setTransformationMode(Qt::SmoothTransformation);
pixmap->setOffset(0, 0);
animation.setDuration(500);
animation.setDuration(1000);
animation.setStartValue(0.0f);
animation.setEndValue(180.0f);
animation.setEndValue(360.0f);
animation.setLoopCount(-1);
connect(&animation, &QVariantAnimation::valueChanged, this, &Progress::onValueChanged);