From 52ce19606844fd6613f6f6c7e78415774a38e5a2 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 22 Jul 2024 09:43:40 -0700 Subject: [PATCH] config: clarify reload font-size behavior Fixes #1988 --- src/config/Config.zig | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/config/Config.zig b/src/config/Config.zig index 5f0de5fb9..e33c2d92f 100644 --- a/src/config/Config.zig +++ b/src/config/Config.zig @@ -111,6 +111,12 @@ const c = @cImport({ /// then you can get an odd numbered pixel size by specifying a half point. /// /// For example, 13.5pt @ 2px/pt = 27px +/// +/// Changing this configuration at runtime will only affect new terminals, +/// i.e. new windows, tabs, etc. Note that you may still not see the change +/// depending on your `window-inherit-font-size` setting. If that setting is +/// true, only the first window will be affected by this change since all +/// subsequent windows will inherit the font size of the previous window. @"font-size": f32 = switch (builtin.os.tag) { // On macOS we default a little bigger since this tends to look better. This // is purely subjective but this is easy to modify.