From 233491c88a4bd95ba63afbd729475934fa25e0b5 Mon Sep 17 00:00:00 2001 From: Ben Loftis Date: Fri, 31 Dec 2021 13:43:50 -0600 Subject: [PATCH] Fix Consolidate-without-processing abort --- gtk2_ardour/editor_ops.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/editor_ops.cc b/gtk2_ardour/editor_ops.cc index e7e645171a..ac0dffc77d 100644 --- a/gtk2_ardour/editor_ops.cc +++ b/gtk2_ardour/editor_ops.cc @@ -4112,7 +4112,7 @@ Editor::bounce_range_selection (BounceTarget target, bool enable_processing) return; } - assert (enable_processing != (target == NewTrigger)); + assert (!(enable_processing && (target == NewTrigger))); uint32_t trigger_slot = 0; string bounce_name;