From b80e34fcf5c8c9f6a0527fa7ce1becb859690204 Mon Sep 17 00:00:00 2001 From: Amit Haridas Date: Sun, 23 Aug 2026 08:55:28 +0530 Subject: [PATCH] fix(preload): whitelist monospace-setting-change channel Reviewer caught that the new View > Monospace Font menu channel was missing from preload.js's ALLOWED_RECEIVE_CHANNELS, the sole gap among 29 raw ipcRenderer.on(...) channels used in renderer.js. Add it under the existing Font section for consistency with adjust-font-size. Amit Haridas --- src/preload.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/preload.js b/src/preload.js index dc2ace8..117b137 100644 --- a/src/preload.js +++ b/src/preload.js @@ -172,6 +172,7 @@ const ALLOWED_RECEIVE_CHANNELS = [ // Font 'adjust-font-size', + 'monospace-setting-change', // Print 'print-preview',