From 7448024dae17362d95f96b5a26c083ae76670a5a Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 27 Dec 2018 17:07:17 -0500 Subject: [PATCH] fix silly cycling-show-hide bug with step editing --- gtk2_ardour/step_entry.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/step_entry.cc b/gtk2_ardour/step_entry.cc index d6bd4970cd..7dc9d17805 100644 --- a/gtk2_ardour/step_entry.cc +++ b/gtk2_ardour/step_entry.cc @@ -469,7 +469,7 @@ StepEntry::~StepEntry() void StepEntry::set_step_editor (StepEditor* seditor) { - if (se) { + if (se && se != seditor) { se->step_entry_done (); }