summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/presentation_info.h
diff options
context:
space:
mode:
authorLen Ovens <len@ovenwerks.net>2018-10-22 12:36:59 -0700
committerLen Ovens <len@ovenwerks.net>2018-10-30 12:15:28 -0700
commitbe5a89aa22df9c0c3a35908d3a3020514f8f504a (patch)
treeb8cf89c3d0534bd625c8ab6e3411768be8e09d40 /libs/ardour/ardour/presentation_info.h
parent5b2eb6107c3ae056e7c27182008b46b4df5c2b28 (diff)
Add ListenBus to stripable types
Diffstat (limited to 'libs/ardour/ardour/presentation_info.h')
-rw-r--r--libs/ardour/ardour/presentation_info.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/libs/ardour/ardour/presentation_info.h b/libs/ardour/ardour/presentation_info.h
index 0bcfff9210..842d18292c 100644
--- a/libs/ardour/ardour/presentation_info.h
+++ b/libs/ardour/ardour/presentation_info.h
@@ -117,11 +117,13 @@ class LIBARDOUR_API PresentationInfo : public PBD::Stateful
Hidden = 0x100,
/* single bit indicates that the group order is set */
OrderSet = 0x400,
+ /* bus type for monitor mixes */
+ ListenBus = 0x2000,
/* special mask to delect out "state" bits */
StatusMask = (Hidden),
/* special mask to delect select type bits */
- TypeMask = (AudioBus|AudioTrack|MidiTrack|MidiBus|VCA|MasterOut|MonitorOut|Auditioner)
+ TypeMask = (AudioBus|AudioTrack|MidiTrack|MidiBus|VCA|MasterOut|MonitorOut|Auditioner|ListenBus)
};
static const Flag AllStripables; /* mask to use for any route or VCA (but not auditioner) */