From ef0cc2878b664b634c0f0272afd0fa9a53d25bb5 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Sat, 20 Jun 2026 14:56:42 +0200 Subject: [PATCH] fix(editor): stop the t-readout wrapping so playback doesn't reflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The fixed-width time readout wrapped to two lines for fractional times (dt 0.25 → 't = 70.25'), growing the panel a row each frame and reflowing the whole panel — the real flicker. Pin its width and forbid wrapping. --- src/components/ResultsPanel.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/ResultsPanel.vue b/src/components/ResultsPanel.vue index 474dae1..8443102 100644 --- a/src/components/ResultsPanel.vue +++ b/src/components/ResultsPanel.vue @@ -134,7 +134,9 @@ const chart = computed(() => { aria-label="Playhead" @input="sim.seek(Number(($event.target as HTMLInputElement).value))" /> - + t = {{ sim.currentTime ?? 0 }}