From edd8ccaa0505a7fad1c610fcab20dd045916e90c Mon Sep 17 00:00:00 2001 From: Bruno Deanoz Date: Tue, 23 Jun 2026 00:13:21 +0200 Subject: [PATCH] =?UTF-8?q?fix=20messages=20overlapping=20mode=20pills=20?= =?UTF-8?q?=E2=80=94=20increase=20bottom=20padding=20to=20220dp?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The two-row ChatInput redesign made the bottom dock ~210dp tall but contentPadding was still 152dp, causing the last message to scroll behind the mode pills. --- app/src/main/java/dev/kaizen/app/chat/ChatScreen.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/dev/kaizen/app/chat/ChatScreen.kt b/app/src/main/java/dev/kaizen/app/chat/ChatScreen.kt index cacc2fa..3506414 100644 --- a/app/src/main/java/dev/kaizen/app/chat/ChatScreen.kt +++ b/app/src/main/java/dev/kaizen/app/chat/ChatScreen.kt @@ -635,7 +635,7 @@ fun ChatScreen( .then(if (isTablet) Modifier.widthIn(max = 720.dp) else Modifier), contentPadding = PaddingValues( top = 76.dp, // Leaves breathing room for the floating top menu button - bottom = 152.dp, // Leaves luxurious room for the floating ModePills + ChatInput + bottom margins + bottom = 220.dp, // Clears the floating ModePills + two-row ChatInput + bottom margins start = 16.dp, end = 16.dp ),