From 5eee7a4a7589281b7b3226e4576d386a6cdecbb2 Mon Sep 17 00:00:00 2001 From: Bent Witthold Date: Tue, 6 Jan 2026 10:17:15 +0100 Subject: [PATCH] Informing the core, that unsaved changes to the items should be saved before starting the updater. --- mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 30985d1..d1e405d 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -162,7 +162,7 @@ void MainWindow::on_actionCheck_for_update_triggered() { const QMessageBox::StandardButton clickedButton = QMessageBox::question( this, tr("Update available."), text, QMessageBox::Yes | QMessageBox::No, QMessageBox::Yes); if (clickedButton == QMessageBox::Yes) { - m_core->triggerApplicationUpdate(); + m_core->triggerApplicationUpdate(true); close(); } }