From f197df6dbe990ec58cbf8f68cd383142a29a0316 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Wed, 8 Jul 2026 22:01:10 +0200 Subject: [PATCH] style(editor): drop the mode line to the panel's bottom edge Move the mode indicator (and the NO KBD flag above it) down so the mode sits flush at the bottom-left with a 2 px margin, reclaiming the dead space that was left below it. --- firmware/src/editor.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/firmware/src/editor.rs b/firmware/src/editor.rs index 6df3608..7deb521 100644 --- a/firmware/src/editor.rs +++ b/firmware/src/editor.rs @@ -946,7 +946,7 @@ impl Editor { if !self.keyboard_present { Text::with_baseline( "NO KBD", - Point::new(PANEL_X, epd::HEIGHT as i32 - 34), + Point::new(PANEL_X, epd::HEIGHT as i32 - 24), style, Baseline::Top, ) @@ -983,7 +983,7 @@ impl Editor { } Text::with_baseline( &s, - Point::new(PANEL_X, epd::HEIGHT as i32 - 22), + Point::new(PANEL_X, epd::HEIGHT as i32 - 12), style, Baseline::Top, )