mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-14 18:46:34 +01:00
select useful cursors for clip end/start handles and "background" in MidiCueEditor
This commit is contained in:
parent
dbcf4c14f4
commit
28e9c3908e
1 changed files with 18 additions and 0 deletions
|
|
@ -1720,6 +1720,16 @@ MidiCueEditor::which_canvas_cursor (ItemType type) const
|
||||||
break;
|
break;
|
||||||
case NoteItem:
|
case NoteItem:
|
||||||
cursor = _cursors->grabber_note;
|
cursor = _cursors->grabber_note;
|
||||||
|
break;
|
||||||
|
case RegionItem:
|
||||||
|
cursor = _cursors->midi_select;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case ClipEndItem:
|
||||||
|
case ClipStartItem:
|
||||||
|
cursor = _cursors->expand_left_right;
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
@ -1739,6 +1749,14 @@ MidiCueEditor::which_canvas_cursor (ItemType type) const
|
||||||
break;
|
break;
|
||||||
case NoteItem:
|
case NoteItem:
|
||||||
cursor = _cursors->grabber_note;
|
cursor = _cursors->grabber_note;
|
||||||
|
break;
|
||||||
|
case ClipEndItem:
|
||||||
|
case ClipStartItem:
|
||||||
|
cursor = _cursors->expand_left_right;
|
||||||
|
break;
|
||||||
|
case RegionItem:
|
||||||
|
cursor = _cursors->midi_pencil;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue