From 41170bb4e0af117ffc95f9caf80b1f75d73bc913 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sun, 24 Sep 2023 20:36:07 -0700 Subject: [PATCH] config: codepoint override font descriptors should not require monospace --- src/config/Config.zig | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/config/Config.zig b/src/config/Config.zig index e28663984..ff277511b 100644 --- a/src/config/Config.zig +++ b/src/config/Config.zig @@ -1543,7 +1543,10 @@ pub const RepeatableCodepointMap = struct { while (try p.next()) |range| { try self.map.add(alloc, .{ .range = range, - .descriptor = .{ .family = valueZ }, + .descriptor = .{ + .family = valueZ, + .monospace = false, // we allow any font + }, }); } }