diff --git a/YACReaderLibrary/library_window.cpp b/YACReaderLibrary/library_window.cpp index cc825d6c..fe8621dc 100644 --- a/YACReaderLibrary/library_window.cpp +++ b/YACReaderLibrary/library_window.cpp @@ -212,14 +212,6 @@ void LibraryWindow::doLayout() comicsViewStack->setCurrentWidget(comicsView); - fullScreenToolTip = new QLabel(comicsView); - fullScreenToolTip->setText(tr(" press 'F' to close fullscreen mode ")); - fullScreenToolTip->setPalette(QPalette(QColor(0,0,0))); - fullScreenToolTip->setFont(QFont("courier new",15,234)); - fullScreenToolTip->setAutoFillBackground(true); - fullScreenToolTip->hide(); - fullScreenToolTip->adjustSize(); - sHorizontal->addWidget(sideBar); #ifndef Q_OS_MAC QVBoxLayout * rightLayout = new QVBoxLayout; @@ -1416,16 +1408,10 @@ void LibraryWindow::toFullScreen() comicsView->toFullScreen(); showFullScreen(); - - fullScreenToolTip->move((width()-fullScreenToolTip->width())/2,0); - fullScreenToolTip->adjustSize(); - fullScreenToolTip->show(); } void LibraryWindow::toNormal() { - fullScreenToolTip->hide(); - sideBar->show(); comicsView->toNormal(); diff --git a/YACReaderLibrary/library_window.h b/YACReaderLibrary/library_window.h index 2f9026f6..8092a774 100644 --- a/YACReaderLibrary/library_window.h +++ b/YACReaderLibrary/library_window.h @@ -109,7 +109,6 @@ private: TableModel * dmCV; //QStringList paths; YACReaderLibraries libraries; - QLabel * fullScreenToolTip; QStackedWidget * mainWidget; NoLibrariesWidget * noLibrariesWidget;