summaryrefslogtreecommitdiff
path: root/gtk2_ardour/opts.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2012-01-10 23:42:42 +0000
committerCarl Hetherington <carl@carlh.net>2012-01-10 23:42:42 +0000
commitc7427287c1a2c04e56d50131dd8bcae83530c810 (patch)
tree0b7a6faf8cbb08d13127edb542f8e371f857be3c /gtk2_ardour/opts.cc
parent08826bc432ce567cccda317571f57f2fa6e12566 (diff)
Reinstate command line option to hide splash screen.
git-svn-id: svn://localhost/ardour2/branches/3.0@11224 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/opts.cc')
-rw-r--r--gtk2_ardour/opts.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk2_ardour/opts.cc b/gtk2_ardour/opts.cc
index 6b4c5e9369..efb64729fc 100644
--- a/gtk2_ardour/opts.cc
+++ b/gtk2_ardour/opts.cc
@@ -34,7 +34,7 @@ using namespace std;
string ARDOUR_COMMAND_LINE::session_name = "";
string ARDOUR_COMMAND_LINE::jack_client_name = "ardour";
bool ARDOUR_COMMAND_LINE::show_key_actions = false;
-bool ARDOUR_COMMAND_LINE::no_splash = true;
+bool ARDOUR_COMMAND_LINE::no_splash = false;
bool ARDOUR_COMMAND_LINE::just_version = false;
bool ARDOUR_COMMAND_LINE::use_vst = true;
bool ARDOUR_COMMAND_LINE::new_session = false;
@@ -61,7 +61,7 @@ print_help (const char *execname)
<< _(" -c, --name <name> Use a specific jack client name, default is ardour\n")
<< _(" -d, --disable-plugins Disable all plugins in an existing session\n")
<< _(" -D, --debug <options> Set debug flags. Use \"-D list\" to see available options\n")
- << _(" -n, --show-splash Show splash screen\n")
+ << _(" -n, --no-splash Do not show splash screen\n")
<< _(" -m, --menus file Use \"file\" to define menus\n")
<< _(" -N, --new session-name Create a new session from the command line\n")
<< _(" -O, --no-hw-optimizations Disable h/w specific optimizations\n")
@@ -155,7 +155,7 @@ ARDOUR_COMMAND_LINE::parse_opts (int argc, char *argv[])
break;
case 'n':
- no_splash = false;
+ no_splash = true;
break;
case 'p':