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.
2 parents fbaac0b + b86a1ee commit 88d81c9Copy full SHA for 88d81c9
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