mirror of
https://github.com/YACReader/yacreader
synced 2025-05-28 03:10:27 -04:00
corregido bug con el input de b?squeda en macosx
This commit is contained in:
parent
08c8f53e95
commit
c02e7cc326
@ -1283,7 +1283,7 @@ void LibraryWindow::toFullScreen()
|
||||
comicFlow->setCenterIndex(comicFlow->centerIndex());
|
||||
comics->hide();
|
||||
sideBar->hide();
|
||||
libraryToolBar->hide();
|
||||
libraryToolBar->hide();
|
||||
|
||||
showFullScreen();
|
||||
|
||||
@ -1305,13 +1305,23 @@ void LibraryWindow::toNormal()
|
||||
comics->show();
|
||||
sideBar->show();
|
||||
|
||||
libraryToolBar->show();
|
||||
comicFlow->show();
|
||||
|
||||
if(fromMaximized)
|
||||
if(fromMaximized)
|
||||
showMaximized();
|
||||
else
|
||||
showNormal();
|
||||
else
|
||||
showNormal();
|
||||
|
||||
#ifdef Q_OS_MAC
|
||||
QTimer * timer = new QTimer();
|
||||
timer->setSingleShot(true);
|
||||
timer->start();
|
||||
connect(timer,SIGNAL(timeout()),libraryToolBar,SLOT(show()));
|
||||
connect(timer,SIGNAL(timeout()),timer,SLOT(deleteLater()));
|
||||
#else
|
||||
libraryToolBar->show();
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
void LibraryWindow::setFoldersFilter(QString filter)
|
||||
|
Loading…
Reference in New Issue
Block a user