Show wizard on the first launch also for the plasmoid

This commit is contained in:
Martchus 2022-11-10 20:50:31 +01:00
parent e5ffffcaec
commit 31038135ad
1 changed files with 7 additions and 0 deletions

View File

@ -166,6 +166,13 @@ void SyncthingApplet::init()
Data::setForkAwesomeThemeOverrides();
}
// show wizard on first launch
if (settings.firstLaunch || settings.fakeFirstLaunch) {
showWizard();
settings.firstLaunch = false;
Settings::save();
}
m_initialized = true;
}