We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fb44d0 commit b86a1eeCopy full SHA for b86a1ee
src/appshell/internal/startupscenario.cpp
@@ -327,7 +327,8 @@ void StartupScenario::onStartupPageOpened(StartupModeType modeType)
327
configuration()->setWelcomeDialogLastShownIndex(-1); // reset
328
}
329
330
- if (configuration()->welcomeDialogShowOnStartup() && !museSoundsUpdateScenario()->hasUpdate()) {
+ const size_t numInstances = multiInstancesProvider()->instances().size();
331
+ if (numInstances == 1 && configuration()->welcomeDialogShowOnStartup() && !museSoundsUpdateScenario()->hasUpdate()) {
332
showWelcomeDialog();
333
334
0 commit comments