From 258ce66a28413817e49967ea0678499010b6f905 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20=C3=81ngel=20San=20Mart=C3=ADn?= Date: Wed, 4 Jun 2014 22:08:11 +0200 Subject: [PATCH] fixed information label being shown with any comic opened --- YACReader/page_label_widget.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/YACReader/page_label_widget.cpp b/YACReader/page_label_widget.cpp index c3b3430c..e7ec979c 100644 --- a/YACReader/page_label_widget.cpp +++ b/YACReader/page_label_widget.cpp @@ -11,6 +11,7 @@ PageLabelWidget::PageLabelWidget(QWidget * parent) { animation = new QPropertyAnimation(this,"pos"); animation->setDuration(150); + animation->setEndValue(QPoint((parent->geometry().size().width()-this->width()),-this->height())); int verticalRes = QApplication::desktop()->screenGeometry().height();