Expand background image path

This commit is contained in:
yunusey
2025-06-01 21:41:02 -04:00
parent 5f849b2060
commit 3784f84c30

View File

@ -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 => {},
}
}