From 7bcd95068c2ec5f1b7c5b66f0bfdb9f285ad984d Mon Sep 17 00:00:00 2001 From: "Brennan Wilkes (Text Groove)" Date: Mon, 9 Feb 2026 22:26:00 -0800 Subject: [PATCH] UX Improvements --- viz/app/item_page.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/viz/app/item_page.js b/viz/app/item_page.js index 41c6354..81b28cb 100644 --- a/viz/app/item_page.js +++ b/viz/app/item_page.js @@ -189,11 +189,11 @@ if (text) { ctx.fillText(text, Math.max(0, axisX - axisInset), py); // DEBUG: show axis anchor point (remove later) - // ctx.save(); - // ctx.globalAlpha = 0.9; - // ctx.fillStyle = "red"; - // ctx.fillRect(axisX - 1, py - 1, 2, 2); - // ctx.restore(); + ctx.save(); + ctx.globalAlpha = 0.9; + ctx.fillStyle = "red"; + ctx.fillRect(axisX - 1, py - 1, 2, 2); + ctx.restore(); } }