From c9a0ad187b76e7cbd0192e05817d7324d394c9f0 Mon Sep 17 00:00:00 2001 From: Gmer4Lfe Date: Sat, 27 Jun 2026 13:20:03 -0400 Subject: [PATCH] =?UTF-8?q?Fix=20editor=20horizontal=20click=20offset=20?= =?UTF-8?q?=E2=80=94=20force=20inline=20fontFamily=20to=20override=20Unrai?= =?UTF-8?q?d=20SPA=20clear-sans?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Plugin/unraid/pages/scheduler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plugin/unraid/pages/scheduler.php b/Plugin/unraid/pages/scheduler.php index 4fb215b..01f49c8 100644 --- a/Plugin/unraid/pages/scheduler.php +++ b/Plugin/unraid/pages/scheduler.php @@ -3048,7 +3048,7 @@ function vvFontSize(delta) { const els = ['vv-editor-body', 'vv-hl-overlay', 'vv-ln-gutter']; els.forEach(id => { const el = document.getElementById(id); - if (el) { el.style.fontSize = fs; el.style.lineHeight = lh; } + if (el) { el.style.fontSize = fs; el.style.lineHeight = lh; el.style.fontFamily = 'monospace'; } }); const cl = document.getElementById('vv-cur-line'); if (cl) cl.style.height = lh;