fix: always enable software cursor in gui builds

This commit is contained in:
CJ van den Berg 2025-01-04 15:15:08 +01:00
parent 1a595871dd
commit 1fdb5f240b
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -92,6 +92,7 @@ fn init(allocator: Allocator) !*Self {
conf.input_mode = try allocator.dupe(u8, conf.input_mode);
conf.top_bar = try allocator.dupe(u8, conf.top_bar);
conf.bottom_bar = try allocator.dupe(u8, conf.bottom_bar);
if (build_options.gui) conf.enable_terminal_cursor = false;
const frame_rate: usize = @intCast(tp.env.get().num("frame-rate"));
if (frame_rate != 0)