From 5c2364ee253bc9db8383b7ead8022be1cfea57dd Mon Sep 17 00:00:00 2001 From: John Maguire Date: Mon, 12 Jul 2010 20:00:42 +0000 Subject: [PATCH] Use update(), not repaint() --- src/widgets/nowplayingwidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/widgets/nowplayingwidget.cpp b/src/widgets/nowplayingwidget.cpp index 6e39bc7a5..44fa55ebc 100644 --- a/src/widgets/nowplayingwidget.cpp +++ b/src/widgets/nowplayingwidget.cpp @@ -339,7 +339,7 @@ bool NowPlayingWidget::show_above_status_bar() const { void NowPlayingWidget::AllHail(bool hypnotoad) { if (hypnotoad) { hypnotoad_ = new QMovie(kHypnotoadPath, QByteArray(), this); - connect(hypnotoad_, SIGNAL(updated(const QRect&)), SLOT(repaint())); + connect(hypnotoad_, SIGNAL(updated(const QRect&)), SLOT(update())); hypnotoad_->start(); update(); } else {