From a4f3e39f1cd9d79981f3d360bcba30aac9e6e7aa Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 24 Feb 2025 22:46:27 -0700 Subject: [PATCH] ensure that the editor canvas cursor changes as we re-enter the wave item We no longer use a cursor stack, so the reason for this being commented out in 486d47db0 no longer apply --- gtk2_ardour/editor_canvas.cc | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/gtk2_ardour/editor_canvas.cc b/gtk2_ardour/editor_canvas.cc index d073698469..21d70590c2 100644 --- a/gtk2_ardour/editor_canvas.cc +++ b/gtk2_ardour/editor_canvas.cc @@ -1243,11 +1243,7 @@ Editor::which_canvas_cursor(ItemType type) const /* find correct cursor to use in object/smart mode */ switch (type) { case RegionItem: - /* We don't choose a cursor for these items on top of a region view, - because this would push a new context on the enter stack which - means switching the region context for things like smart mode - won't actually change the cursor. */ - // case WaveItem: + case WaveItem: case StreamItem: case AutomationTrackItem: cursor = which_track_cursor ();