From 8ddf057553024c4d13053344b40deb0177149346 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 20 Jan 2022 14:15:25 -0700 Subject: [PATCH] triggerbox: fix enum (compiler should have noticed this) --- libs/ardour/triggerbox.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/triggerbox.cc b/libs/ardour/triggerbox.cc index 14bfc940c8..c3e2d169c0 100644 --- a/libs/ardour/triggerbox.cc +++ b/libs/ardour/triggerbox.cc @@ -410,7 +410,7 @@ Trigger::set_use_follow_length (bool ufl) bool Trigger::internal_use_follow_length () const { - return (_follow_action0.val().type != None) && _use_follow_length; + return (_follow_action0.val().type != FollowAction::None) && _use_follow_length; } void