diff --git a/front/dist/resources/style/style.css b/front/dist/resources/style/style.css index 669948e1..93f8fabc 100644 --- a/front/dist/resources/style/style.css +++ b/front/dist/resources/style/style.css @@ -500,6 +500,7 @@ input[type=range]:focus::-ms-fill-upper { width: 100%; height: 100%; pointer-events: none; + z-index: 999; /* TODO: DO WE NEED FLEX HERE???? WE WANT A SIDEBAR OF EXACTLY 25% (note: flex useful for direction!!!) */ } diff --git a/front/src/Phaser/Game/GameScene.ts b/front/src/Phaser/Game/GameScene.ts index 544bd0c4..27ad414c 100644 --- a/front/src/Phaser/Game/GameScene.ts +++ b/front/src/Phaser/Game/GameScene.ts @@ -438,8 +438,8 @@ export class GameScene extends ResizableScene implements CenterListener { //create input to move - mediaManager.setUserInputManager(this.userInputManager); this.userInputManager = new UserInputManager(this); + mediaManager.setUserInputManager(this.userInputManager); if (localUserStore.getFullscreen()) { document.querySelector('body')?.requestFullscreen();