diff --git a/YACReader/viewer.cpp b/YACReader/viewer.cpp index 748f7d19..d39dafc7 100644 --- a/YACReader/viewer.cpp +++ b/YACReader/viewer.cpp @@ -119,10 +119,10 @@ zoom(100) verticalScroller = new QPropertyAnimation(verticalScrollBar(), "sliderPosition"); connect(verticalScroller,SIGNAL(valueChanged (const QVariant &)),this,SIGNAL(backgroundChanges())); horizontalScroller = new QPropertyAnimation(horizontalScrollBar(), "sliderPosition"); + connect(horizontalScroller,SIGNAL(valueChanged (const QVariant &)),this,SIGNAL(backgroundChanges())); groupScroller = new QParallelAnimationGroup(); groupScroller->addAnimation(verticalScroller); groupScroller->addAnimation(horizontalScroller); - connect(groupScroller,SIGNAL(valueChanged (const QVariant &)),this,SIGNAL(backgroundChanges())); notificationsLabel = new NotificationsLabelWidget(this); notificationsLabel->hide();