From e615b11b2cd0986dff759c38eda7d903107d8ee4 Mon Sep 17 00:00:00 2001 From: Daniel Wennberg Date: Thu, 2 Oct 2025 10:28:18 -0700 Subject: [PATCH] fix(config): Make macos-custom-icon null-terminated --- src/config/Config.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/Config.zig b/src/config/Config.zig index b7a9699c8..2e21b9272 100644 --- a/src/config/Config.zig +++ b/src/config/Config.zig @@ -2884,7 +2884,7 @@ keybind: Keybinds = .{}, /// /// Note: This configuration is required when `macos-icon` is set to /// `custom` -@"macos-custom-icon": ?[]const u8 = null, +@"macos-custom-icon": ?[:0]const u8 = null, /// The material to use for the frame of the macOS app icon. ///