From 3c0c84d067342af700f1cc6e017cdaf68a57b452 Mon Sep 17 00:00:00 2001 From: AnErrupTion Date: Sat, 15 Nov 2025 20:02:59 +0100 Subject: [PATCH] Fix build error I really should test PRs before merging them, shouldn't I? --- src/main.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.zig b/src/main.zig index a4108e4..cc69921 100644 --- a/src/main.zig +++ b/src/main.zig @@ -755,7 +755,7 @@ pub fn main() !void { buffer.drawLabel(label_txt, buffer.box_x, buffer.box_y + buffer.box_height); } - if (!hide_keyboard_locks and can_get_lock_state) draw_lock_state: { + if (!config.hide_keyboard_locks and can_get_lock_state) draw_lock_state: { const lock_state = interop.getLockState() catch |err| { try info_line.addMessage(lang.err_lock_state, config.error_bg, config.error_fg); can_get_lock_state = false;