From b36c1ae129ee9656fd90bd2042fd5d2a3cf171b8 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sat, 23 Aug 2025 22:34:28 -0600 Subject: [PATCH] make pianoroll update happen on same timer as main editor playhead --- gtk2_ardour/pianoroll.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/pianoroll.cc b/gtk2_ardour/pianoroll.cc index 68d528fe26..1feb627c39 100644 --- a/gtk2_ardour/pianoroll.cc +++ b/gtk2_ardour/pianoroll.cc @@ -1424,7 +1424,7 @@ Pianoroll::set_trigger (TriggerReference & tref) trigger->PropertyChanged.connect (object_connections, invalidator (*this), std::bind (&Pianoroll::trigger_prop_change, this, _1), gui_context()); trigger->ArmChanged.connect (object_connections, invalidator (*this), std::bind (&Pianoroll::trigger_arm_change, this), gui_context()); _update_connection.disconnect (); - _update_connection = Timers::rapid_connect (sigc::mem_fun (*this, &CueEditor::maybe_update)); + _update_connection = Timers::super_rapid_connect (sigc::mem_fun (*this, &CueEditor::maybe_update)); if (trigger) { set_region (trigger->the_region());