From 73a625d6206c0f00acde140eba720ff6a91d9723 Mon Sep 17 00:00:00 2001 From: tobtoht Date: Wed, 13 Dec 2023 15:27:37 +0100 Subject: [PATCH] wizard: only show setup wizard once --- src/wizard/PageMenu.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/wizard/PageMenu.cpp b/src/wizard/PageMenu.cpp index a5e0805..118cd96 100644 --- a/src/wizard/PageMenu.cpp +++ b/src/wizard/PageMenu.cpp @@ -29,6 +29,9 @@ void PageMenu::initializePage() { } else { ui->radioCreate->setChecked(true); } + + // Don't show setup wizard again + conf()->set(Config::firstRun, false); } int PageMenu::nextId() const {