(originalEvent: IMouseEventArgs, note: Note | null)
| 2921 | } |
| 2922 | |
| 2923 | private _onNoteMouseUp(originalEvent: IMouseEventArgs, note: Note | null): void { |
| 2924 | if (this._isDestroyed) { |
| 2925 | return; |
| 2926 | } |
| 2927 | |
| 2928 | (this.noteMouseUp as EventEmitterOfT<Note | null>).trigger(note); |
| 2929 | this.uiFacade.triggerEvent(this.container, 'noteMouseUp', note, originalEvent); |
| 2930 | this._isNoteMouseDown = false; |
| 2931 | } |
| 2932 | |
| 2933 | private _updateSelectionCursor(range: PlaybackRange | null) { |
| 2934 | if (!this._tickCache) { |
no test coverage detected