From 3784f84c30ad8f6c92341c45b51cbde89d682e96 Mon Sep 17 00:00:00 2001 From: yunusey Date: Sun, 1 Jun 2025 21:41:02 -0400 Subject: [PATCH] Expand background image path --- src/config/Config.zig | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/config/Config.zig b/src/config/Config.zig index 729458e07..385b18bec 100644 --- a/src/config/Config.zig +++ b/src/config/Config.zig @@ -3014,6 +3014,15 @@ fn expandPaths(self: *Config, base: []const u8) !void { &self._diagnostics, ); }, + ?Path => { + if (@field(self, field.name)) |*path| { + try path.expand( + arena_alloc, + base, + &self._diagnostics, + ); + } + }, else => {}, } }