commit 488d5495e658e532065544078a56c37cad6ba2f4
parent d885c5b503656bc611c22391f3ce3ba4115dfdbf
Author: William Casarin <jb55@jb55.com>
Date: Mon, 26 Jan 2026 12:52:22 -0800
dave: fix compact input bottom margin
Signed-off-by: William Casarin <jb55@jb55.com>
Diffstat:
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/crates/notedeck_dave/src/ui/dave.rs b/crates/notedeck_dave/src/ui/dave.rs
@@ -124,9 +124,7 @@ impl<'a> DaveUi<'a> {
.show(ui, |ui| {
ui.with_layout(Layout::bottom_up(Align::Min), |ui| {
let margin = self.chat_margin(ui.ctx());
-
- // Reduce bottom margin in compact mode to prevent overflow
- let bottom_margin = if self.compact { 20 } else { 100 };
+ let bottom_margin = 100;
let r = egui::Frame::new()
.outer_margin(egui::Margin {