From eba8eb07d3359c2077ecc154784fc2ef599a54b1 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 26 Jul 2023 16:41:09 -0600 Subject: [PATCH] automation control: fix logic for ::pop_group() --- libs/ardour/automation_control.cc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/libs/ardour/automation_control.cc b/libs/ardour/automation_control.cc index 786be7cb19..c056837619 100644 --- a/libs/ardour/automation_control.cc +++ b/libs/ardour/automation_control.cc @@ -386,10 +386,6 @@ AutomationControl::push_group (std::shared_ptr cg) bool AutomationControl::pop_group () { - if (!_pushed_group) { - return false; - } - _group = _pushed_group; _pushed_group.reset ();