From 88e9db30e34604503ec7b472023707ffda08a797 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 29 Dec 2021 09:51:20 -0700 Subject: [PATCH] triggerbox: NO-OP move code around --- libs/ardour/triggerbox.cc | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/libs/ardour/triggerbox.cc b/libs/ardour/triggerbox.cc index f39748d3bc..b5f75cdc00 100644 --- a/libs/ardour/triggerbox.cc +++ b/libs/ardour/triggerbox.cc @@ -1869,13 +1869,6 @@ TriggerBox::TriggerBox (Session& s, DataType dt) Config->ParameterChanged.connect_same_thread (*this, boost::bind (&TriggerBox::parameter_changed, this, _1)); } -void -TriggerBox::scene_bang (uint32_t n) -{ - DEBUG_TRACE (DEBUG::Triggers, string_compose ("scene bang on %1 for %2\n", n)); - _pending_scene = n; -} - void TriggerBox::set_region (uint32_t slot, boost::shared_ptr region) { @@ -1935,6 +1928,13 @@ TriggerBox::maybe_swap_pending (uint32_t slot) } } +void +TriggerBox::scene_bang (uint32_t n) +{ + DEBUG_TRACE (DEBUG::Triggers, string_compose ("scene bang on %1 for %2\n", n)); + _pending_scene = n; +} + void TriggerBox::scene_unbang (uint32_t n) {