From ac8936004e301050b0dc4feda124a893dc00f7df Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Thu, 27 Sep 2018 11:36:18 -0700 Subject: [PATCH] update-manager: actually remember that we asked the user Otherwise we get that annoying question every time the git version changes. Signed-off-by: Dirk Hohndel --- desktop-widgets/updatemanager.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/desktop-widgets/updatemanager.cpp b/desktop-widgets/updatemanager.cpp index ee209474c..0cc7b8c72 100644 --- a/desktop-widgets/updatemanager.cpp +++ b/desktop-widgets/updatemanager.cpp @@ -120,6 +120,7 @@ void UpdateManager::requestReceived() response.setIcon(QMessageBox::Question); response.setWindowModality(Qt::WindowModal); update_settings->set_dont_check_for_updates(response.exec() != QMessageBox::Accepted); + update_settings->set_dont_check_exists(true); } } }