From bb8829833c92e422d45d26c918f116b6296316c1 Mon Sep 17 00:00:00 2001 From: Parker TenBroeck <51721964+ParkerTenBroeck@users.noreply.github.com> Date: Tue, 13 Jan 2026 00:29:21 -0500 Subject: [PATCH] fixed potential issue with button disabling --- web/root/src/controls.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/web/root/src/controls.ts b/web/root/src/controls.ts index 8d553f0..aac0d0f 100644 --- a/web/root/src/controls.ts +++ b/web/root/src/controls.ts @@ -92,6 +92,7 @@ class Controls { bus.on("automata/sim/update", simulation => { Controls.simulation_active = !!simulation; if (!simulation) Controls.stop(); + Controls.updateButtons(); }); bus.on("automata/sim/after_step", ({ result }) => {