From bf35d0a621bc34b613524072bf831f71399777ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20=C3=81ngel=20San=20Mart=C3=ADn?= Date: Sun, 20 Aug 2023 12:38:35 +0200 Subject: [PATCH] Stop library creation/updates on exit --- YACReaderLibrary/library_window.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/YACReaderLibrary/library_window.cpp b/YACReaderLibrary/library_window.cpp index cb5708ba..8bdfa5e5 100644 --- a/YACReaderLibrary/library_window.cpp +++ b/YACReaderLibrary/library_window.cpp @@ -2851,6 +2851,10 @@ void LibraryWindow::closeEvent(QCloseEvent *event) void LibraryWindow::prepareToCloseApp() { httpServer->stop(); + + libraryCreator->stop(); + librariesUpdateCoordinator->stop(); + settings->setValue(MAIN_WINDOW_GEOMETRY, saveGeometry()); contentViewsManager->comicsView->close();