mirror of
https://github.com/YACReader/yacreader
synced 2025-06-04 01:28:55 -04:00
corregido bug con el input de b?squeda en macosx
This commit is contained in:
parent
08c8f53e95
commit
c02e7cc326
@ -1305,13 +1305,23 @@ void LibraryWindow::toNormal()
|
||||
comics->show();
|
||||
sideBar->show();
|
||||
|
||||
libraryToolBar->show();
|
||||
comicFlow->show();
|
||||
|
||||
if(fromMaximized)
|
||||
showMaximized();
|
||||
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…
x
Reference in New Issue
Block a user