Don't use a custom signal at all

QThread::finished should be enough in all the cases.
This commit is contained in:
Luis Ángel San Martín
2024-12-28 11:52:47 +01:00
parent 9c16d1ad81
commit 561203d2f1
3 changed files with 1 additions and 7 deletions

View File

@ -706,7 +706,7 @@ void LibraryWindow::createConnections()
connect(createLibraryDialog, &CreateLibraryDialog::libraryExists, this, &LibraryWindow::libraryAlreadyExists);
connect(importComicsInfoDialog, &QDialog::finished, this, &LibraryWindow::reloadCurrentLibrary);
connect(libraryCreator, &LibraryCreator::completed, this, &LibraryWindow::showRootWidget);
connect(libraryCreator, &LibraryCreator::finished, this, &LibraryWindow::showRootWidget);
connect(libraryCreator, &LibraryCreator::updated, this, &LibraryWindow::reloadCurrentLibrary);
connect(libraryCreator, &LibraryCreator::created, this, &LibraryWindow::openLastCreated);
connect(libraryCreator, &LibraryCreator::updatedCurrentFolder, this, &LibraryWindow::reloadAfterCopyMove);