show selection trim cursors in Range mode

This commit is contained in:
Ben Loftis 2015-06-28 00:52:49 -05:00
parent bdd46bada9
commit 9370a80966
1 changed files with 13 additions and 0 deletions

View File

@ -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) {