mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
add a hidden option to show hidden processors
simplify debugging solo, monitor-processors, etc
This commit is contained in:
parent
b3ace2e4c8
commit
d25e1cb635
3 changed files with 29 additions and 3 deletions
|
|
@ -25,6 +25,10 @@
|
|||
#include "ardour/debug.h"
|
||||
#include "ardour/session.h"
|
||||
|
||||
#ifndef NDEBUG // "-H"
|
||||
#include "processor_box.h"
|
||||
#endif
|
||||
|
||||
#include "opts.h"
|
||||
|
||||
#include "i18n.h"
|
||||
|
|
@ -84,7 +88,7 @@ print_help (const char *execname)
|
|||
int
|
||||
ARDOUR_COMMAND_LINE::parse_opts (int argc, char *argv[])
|
||||
{
|
||||
const char *optstring = "abBc:C:dD:hk:E:m:N:nOp:PST:U:vV";
|
||||
const char *optstring = "abBc:C:dD:hHk:E:m:N:nOp:PST:U:vV";
|
||||
const char *execname = strrchr (argv[0], '/');
|
||||
|
||||
if (getenv ("ARDOUR_SAE")) {
|
||||
|
|
@ -143,6 +147,11 @@ ARDOUR_COMMAND_LINE::parse_opts (int argc, char *argv[])
|
|||
print_help (execname);
|
||||
exit (0);
|
||||
break;
|
||||
case 'H':
|
||||
#ifndef NDEBUG
|
||||
ProcessorBox::show_all_processors = true;
|
||||
#endif
|
||||
break;
|
||||
case 'a':
|
||||
check_announcements = false;
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue