|
@@ -35,6 +35,9 @@ export class SheetRenderingManager extends AbstractZoomView implements IZoomView
|
|
|
public addListener(listener: IUserDisplayInteractionListener): void {
|
|
|
this.listeners.push(listener);
|
|
|
}
|
|
|
+ public get Listeners(): IUserDisplayInteractionListener[] {
|
|
|
+ return this.listeners;
|
|
|
+ }
|
|
|
public SingleTouchDisabled: boolean;
|
|
|
public DoubleTouchDisabled: boolean;
|
|
|
public LockDisplayToCursor: boolean = true;
|
|
@@ -267,7 +270,7 @@ export class SheetRenderingManager extends AbstractZoomView implements IZoomView
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- protected setStartPosition(newStartPosition: Fraction): void {
|
|
|
+ public setStartPosition(newStartPosition: Fraction): void {
|
|
|
if (this.graphicalMusicSheet === undefined) {
|
|
|
return;
|
|
|
}
|