mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 05:35:47 +01:00
Do not try to autostart engine for new users
This allows new user to select the soundcard and I/O settings when loading demo sessions at first run, or when tricking Ardour to open an existing session (try to create an existing session, user may choose to load it instead). Normally a user can only create a new session after first running Ardour, and creating new sessions always shows the dialog (to set the samplerate).
This commit is contained in:
parent
a10f001c97
commit
902c36d019
1 changed files with 1 additions and 1 deletions
|
|
@ -461,7 +461,7 @@ StartupFSM::start_audio_midi_setup ()
|
|||
}
|
||||
}
|
||||
|
||||
bool try_autostart = (Config->get_try_autostart_engine () || g_getenv ("ARDOUR_TRY_AUTOSTART_ENGINE"));
|
||||
bool try_autostart = !new_user && (Config->get_try_autostart_engine () || g_getenv ("ARDOUR_TRY_AUTOSTART_ENGINE"));
|
||||
if (session_is_new) {
|
||||
try_autostart = false;
|
||||
} else if (!backend) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue