Testing trying to keep serialization through interface

More variables called through app, reversed to original. keep serialization through interface.
This commit is contained in:
Extremesecrecy
2025-07-24 10:32:11 -07:00
parent 98708821be
commit 8fd86901e5
7 changed files with 14 additions and 12 deletions
+3 -2
View File
@@ -159,7 +159,7 @@ const ZoomedDial = withStyles(
}
onTouchStart() {
onTouchStart(e: TouchEvent<SVGSVGElement>) {
//must be defined to get onTouchMove
}
onTouchMove(e: TouchEvent<SVGSVGElement>) {
@@ -377,7 +377,8 @@ const ZoomedDial = withStyles(
}
onBodyPointerDownCapture(e: PointerEvent): any {
onBodyPointerDownCapture(e_: any): any {
let e = e_ as PointerEvent;
if (this.isExtraTouch(e)) {
this.captureElement!.setPointerCapture(e.pointerId);
this.capturedPointers.push(e.pointerId);