MCPcopy Create free account
hub / github.com/CoderLine/alphaTab / _onNoteMouseUp

Method _onNoteMouseUp

packages/alphatab/src/AlphaTabApiBase.ts:2923–2931  ·  view source on GitHub ↗
(originalEvent: IMouseEventArgs, note: Note | null)

Source from the content-addressed store, hash-verified

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

Callers 1

_setupClickHandlingMethod · 0.95

Calls 2

triggerEventMethod · 0.65
triggerMethod · 0.45

Tested by

no test coverage detected