From e00c579fb2e99e993a0ab84ff00ba3109f6b5f20 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 23 Dec 2014 13:36:25 -0500 Subject: [PATCH] Update canvas cursor on pop. --- gtk2_ardour/editor_canvas.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/gtk2_ardour/editor_canvas.cc b/gtk2_ardour/editor_canvas.cc index f24ecf7718..03637ec7f6 100644 --- a/gtk2_ardour/editor_canvas.cc +++ b/gtk2_ardour/editor_canvas.cc @@ -1030,6 +1030,7 @@ Editor::pop_canvas_cursor () /* Popped to an existing cursor, we're done. Otherwise, the context that created this cursor has been destroyed, so we need to skip to the next down the stack. */ + set_canvas_cursor (_cursor_stack.back()); return; } }