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;