From ebaf33234f47981bfffa275f0c6972c9765f7bfd Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Tue, 14 Apr 2026 20:52:09 +0200 Subject: [PATCH] Update App.tsx to reset editor simulation clock override when not playing --- src/app/App.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/app/App.tsx b/src/app/App.tsx index 4bd09865..0bc132b2 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -3921,6 +3921,9 @@ export function App({ store, initialStatusMessage }: AppProps) { time: nextTime }) ); + if (!editorSimulationPlaying) { + setEditorSimulationClockOverride(null); + } setStatusMessage(successMessage); } catch (error) { setStatusMessage(getErrorMessage(error));