From 639ec34e5df42c8f59eb93f89e695b95df6e89e0 Mon Sep 17 00:00:00 2001 From: rakadu1 Date: Wed, 3 Dec 2025 12:43:19 +0530 Subject: [PATCH] Scale removed from Persistent overlay and theme button color scheme changed. --- steps/index.html | 4 ++-- steps/src/dom.js | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/steps/index.html b/steps/index.html index f5d244b..4dea5cf 100644 --- a/steps/index.html +++ b/steps/index.html @@ -253,7 +253,7 @@ class="bg-blue-100 dark:bg-blue-700 text-blue-800 dark:text-blue-100 border border-blue-300 dark:border-blue-600 shadow-sm hover:bg-blue-200 dark:hover:bg-blue-600 active:scale-95 active:shadow-inner font-medium rounded-lg text-xs px-4 py-2 transition-all text-center"> Keyboard
Shortcuts - diff --git a/steps/src/dom.js b/steps/src/dom.js index ef84e95..421cb28 100644 --- a/steps/src/dom.js +++ b/steps/src/dom.js @@ -330,7 +330,7 @@ export function updatePersistentOverlays(currentMediaTime) { | Color Mode: | Drift: | Δt: - | Scale: + `; @@ -342,7 +342,7 @@ export function updatePersistentOverlays(currentMediaTime) { mode: document.getElementById("ov-mode"), drift: document.getElementById("ov-drift"), ift: document.getElementById("ov-ift"), - scale: document.getElementById("ov-scale"), + // scale: document.getElementById("ov-scale"), // Commented out as requested dotCanvas: document.getElementById("ift-dot-matrix") // Cache canvas too }; } @@ -384,7 +384,7 @@ export function updatePersistentOverlays(currentMediaTime) { overlayCache.ift.textContent = interFrameTime.toFixed(0) + "ms"; overlayCache.ift.style.color = iftColor; - overlayCache.scale.textContent = "1:" + msPerBlock.toFixed(1) + "ms"; + // overlayCache.scale.textContent = "1:" + msPerBlock.toFixed(1) + "ms"; // Commented out as requested } // --- Draw Optimized Square Block Matrix Graph ---