From 125b0f9432ea96601f96cdbffdcb99e2e78000dd Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 20 Mar 2024 06:48:54 -0600 Subject: [PATCH] add a new Profile flag for livetrax --- libs/ardour/ardour/profile.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libs/ardour/ardour/profile.h b/libs/ardour/ardour/profile.h index a3d2f9eb94..33f6c05180 100644 --- a/libs/ardour/ardour/profile.h +++ b/libs/ardour/ardour/profile.h @@ -32,6 +32,7 @@ public: SmallScreen, SinglePackage, Mixbus, + LiveTrax, LastElement, }; @@ -44,6 +45,9 @@ public: bool get_mixbus() const { return bits[Mixbus]; } void set_mixbus() { bits[Mixbus] = true; } + bool get_livetrax() const { return bits[LiveTrax]; } + void set_livetrax() { bits[LiveTrax] = true; } + void set_single_package () { bits[SinglePackage] = true; } bool get_single_package () const { return bits[SinglePackage]; }