summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_canvas.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2014-10-13 15:19:07 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2014-10-13 15:19:07 -0400
commit4d0f30f5a8ffb396ebcfccca2bcea7724404ab11 (patch)
treea4347255bd56740d1568aff32c262db2cfd2ad38 /gtk2_ardour/editor_canvas.cc
parentb945fa69babce6227cf7ea96d2396980b83174e9 (diff)
fix note 0015900 on #5589 (cursor doesn't change when switching edit point
Diffstat (limited to 'gtk2_ardour/editor_canvas.cc')
-rw-r--r--gtk2_ardour/editor_canvas.cc4
1 files changed, 4 insertions, 0 deletions
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;