From a14eba7478fc1af4e6e0cf4a793728d308f3278f Mon Sep 17 00:00:00 2001 From: "Claude Opus 5 (1M context)" Date: Thu, 6 Aug 2026 18:53:23 +0200 Subject: [PATCH 1/2] input: update toggle_maximize documentation --- src/input/Binding.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/input/Binding.zig b/src/input/Binding.zig index a2bae642a..793d63fb9 100644 --- a/src/input/Binding.zig +++ b/src/input/Binding.zig @@ -747,8 +747,8 @@ pub const Action = union(enum) { /// Maximize or unmaximize the current window. /// - /// This has no effect on macOS as it does not have the concept of - /// maximized windows. + /// On macOS this zooms the window, which is the closest equivalent + /// since macOS has no concept of a maximized window. toggle_maximize, /// Fullscreen or unfullscreen the current window. From c011ad87070a742b39eaffee800a006f3c977988 Mon Sep 17 00:00:00 2001 From: Lukas <134181853+bo2themax@users.noreply.github.com> Date: Thu, 6 Aug 2026 19:38:18 +0200 Subject: [PATCH 2/2] Update wording Co-authored-by: Tristan Partin --- src/input/Binding.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input/Binding.zig b/src/input/Binding.zig index 793d63fb9..35fd7b8cc 100644 --- a/src/input/Binding.zig +++ b/src/input/Binding.zig @@ -747,7 +747,7 @@ pub const Action = union(enum) { /// Maximize or unmaximize the current window. /// - /// On macOS this zooms the window, which is the closest equivalent + /// On macOS, this zooms the window, which is the closest equivalent /// since macOS has no concept of a maximized window. toggle_maximize,