Skip to content
Snippets Groups Projects
Commit f956b52e authored by Jens Bache-Wiig's avatar Jens Bache-Wiig
Browse files

Fix warning on progressbar animation

parent dd3bf0c6
No related branches found
No related tags found
No related merge requests found
......@@ -68,7 +68,7 @@ bool ProgressBar::event(QEvent *e)
break;
case QEvent::Leave:
{
QPropertyAnimation *animation = new QPropertyAnimation(this, "m_cancelButtonFader");
QPropertyAnimation *animation = new QPropertyAnimation(this, "cancelButtonFader");
animation->setDuration(225);
animation->setEndValue(0.0);
animation->start(QAbstractAnimation::DeleteWhenStopped);
......@@ -287,7 +287,5 @@ void ProgressBar::paintEvent(QPaintEvent *)
p.translate(0.5, 0.5);
p.drawLine(cancelRect.center()+QPoint(-1,-2), cancelRect.center()+QPoint(+3,+2));
p.drawLine(cancelRect.center()+QPoint(+3,-2), cancelRect.center()+QPoint(-1,+2));
p.setPen(QPen(QColor(0, 0, 0, 80)));
p.drawLine(cancelRect.bottomLeft() + QPoint(2,-1), cancelRect.bottomRight() + QPoint(0,-1));
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment