Fix: Removing the else condition

This commit is contained in:
ebits 2025-10-23 13:38:18 +05:30
commit 1d93d7e243

View file

@ -601,8 +601,6 @@ pub fn main() !void {
var battery_y: usize = config.edge_margin;
if (!config.hide_key_hints) {
battery_y += 1;
} else {
battery_y = config.edge_margin;
}
buffer.drawLabel(battery_str, config.edge_margin, battery_y);
can_draw_battery = true;