WebUI Fixes (#10608)

* Fix camera with -

* Fix not playing player after making slight adjustment

* Fix hovering getting stuck
This commit is contained in:
Nicolas Mowen
2024-03-22 08:31:20 -06:00
committed by GitHub
parent df6c3b14dd
commit 83517f59b4
4 changed files with 15 additions and 8 deletions

View File

@@ -42,6 +42,10 @@ export class DynamicVideoController {
}
}
play() {
this.playerController.play();
}
pause() {
this.playerController.pause();
}