From 0c7b1cb448626009807311adace0b5ce06c52ff2 Mon Sep 17 00:00:00 2001 From: Daniel Imms <2193314+Tyriar@users.noreply.github.com> Date: Sat, 3 Jan 2026 14:52:32 -0800 Subject: [PATCH] Update demo dims on font family change Fixes #5572 --- demo/client/components/window/optionsWindow.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/demo/client/components/window/optionsWindow.ts b/demo/client/components/window/optionsWindow.ts index c2f810b8..92386581 100644 --- a/demo/client/components/window/optionsWindow.ts +++ b/demo/client/components/window/optionsWindow.ts @@ -226,6 +226,9 @@ export class OptionsWindow extends BaseWindow implements IControlWindow { if (o === 'theme') { this._handlers.updateTerminalContainerBackground(); } + if (o === 'fontFamily') { + this._handlers.updateTerminalSize(); + } }); }); }