From: Ben Loftis Date: Sun, 28 Jun 2015 05:52:49 +0000 (-0500) Subject: show selection trim cursors in Range mode X-Git-Tag: 4.2~584 X-Git-Url: https://main.carlh.net/gitweb/?p=ardour.git;a=commitdiff_plain;h=9370a80966443fe3f14dcb391aeb004102e3b4ac show selection trim cursors in Range mode --- diff --git a/gtk2_ardour/editor_canvas.cc b/gtk2_ardour/editor_canvas.cc index 66417923be..8e2f78fb93 100644 --- a/gtk2_ardour/editor_canvas.cc +++ b/gtk2_ardour/editor_canvas.cc @@ -1188,6 +1188,19 @@ Editor::which_canvas_cursor(ItemType type) const { Gdk::Cursor* cursor = which_mode_cursor (); + if (mouse_mode == MouseRange) { + switch (type) { + case StartSelectionTrimItem: + cursor = _cursors->left_side_trim; + break; + case EndSelectionTrimItem: + cursor = _cursors->right_side_trim; + break; + default: + break; + } + } + if ((mouse_mode == MouseObject || get_smart_mode ()) || mouse_mode == MouseContent) {