From 424f42fa45713a108ca7e3c21ce1a174e6f55800 Mon Sep 17 00:00:00 2001 From: Jeffrey Alan Scudder Date: Tue, 27 Jan 2026 18:52:44 +0000 Subject: [PATCH] feat(electron): add FF1 Bridge menu, fix window positioning for +/++/+++ commands --- system/public/aesthetic.computer/bios.mjs | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/system/public/aesthetic.computer/bios.mjs b/system/public/aesthetic.computer/bios.mjs index c8cd0568d4..5e65b9586f 100644 --- a/system/public/aesthetic.computer/bios.mjs +++ b/system/public/aesthetic.computer/bios.mjs @@ -1296,17 +1296,6 @@ async function boot(parsed, bpm = 60, resolution, debug) { ctx.clearRect(0, tempCanvas.height, width, height - tempCanvas.height); } } else { - // 🔐 In sandboxed contexts, skip expensive pixel sampling for reframe fill - // Just use black - this only affects edge fill during resolution changes - if (isOpaqueOrigin) { - ctx.fillStyle = 'rgb(0, 0, 0)'; - if (width > tempCanvas.width) { - ctx.fillRect(tempCanvas.width, 0, width - tempCanvas.width, height); - } - if (height > tempCanvas.height) { - ctx.fillRect(0, tempCanvas.height, width, height - tempCanvas.height); - } - } else { const coerceToRGB = (color) => { if (!color) return null; try { @@ -1434,7 +1423,6 @@ async function boot(parsed, bpm = 60, resolution, debug) { ctx.fillRect(0, tempCanvas.height, width, height - tempCanvas.height); } } - } // end non-sandbox path } } -- 2.51.2