From 4d0f30f5a8ffb396ebcfccca2bcea7724404ab11 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 13 Oct 2014 15:19:07 -0400 Subject: [PATCH] fix note 0015900 on #5589 (cursor doesn't change when switching edit point --- gtk2_ardour/editor_canvas.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gtk2_ardour/editor_canvas.cc b/gtk2_ardour/editor_canvas.cc index 3d763cbe56..074d72f4cd 100644 --- a/gtk2_ardour/editor_canvas.cc +++ b/gtk2_ardour/editor_canvas.cc @@ -1211,6 +1211,10 @@ Editor::reset_canvas_cursor () Gdk::Cursor* cursor = which_mode_cursor (); + if (!cursor) { + cursor = which_grabber_cursor (); + } + if (cursor) { set_canvas_cursor (cursor); return true;