From a562e359199d98a9ffcca42fda306e00624a93d0 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 4224a73e6e..5f1f3edb47 100644 --- a/gtk2_ardour/editor_canvas.cc +++ b/gtk2_ardour/editor_canvas.cc @@ -1290,6 +1290,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;