From d5d9edccd5d915609f52178781e38dd5721455fa Mon Sep 17 00:00:00 2001
From: dumdum7 <95527094+dumdum7@users.noreply.github.com>
Date: Fri, 27 Dec 2024 16:48:33 +0100
Subject: [PATCH] Don't set interactiveReady when initializing player

---
 ui/v2.5/src/components/ScenePlayer/ScenePlayer.tsx | 1 -
 1 file changed, 1 deletion(-)

diff --git a/ui/v2.5/src/components/ScenePlayer/ScenePlayer.tsx b/ui/v2.5/src/components/ScenePlayer/ScenePlayer.tsx
index 24453043bd8..4c94d433e8f 100644
--- a/ui/v2.5/src/components/ScenePlayer/ScenePlayer.tsx
+++ b/ui/v2.5/src/components/ScenePlayer/ScenePlayer.tsx
@@ -549,7 +549,6 @@ export const ScenePlayer: React.FC<IScenePlayerProps> = ({
 
     // always stop the interactive client on initialisation
     interactiveClient.pause();
-    interactiveReady.current = false;
 
     const isSafari = UAParser().browser.name?.includes("Safari");
     const isLandscape = file.height && file.width && file.width > file.height;