From 079c35e37b1631243753eaab06148d922c9b4834 Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Sat, 16 Jan 2021 17:32:56 +0100 Subject: [PATCH] fix: chat padding --- lib/views/chat.dart | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lib/views/chat.dart b/lib/views/chat.dart index b057feeb..7d1bb122 100644 --- a/lib/views/chat.dart +++ b/lib/views/chat.dart @@ -638,7 +638,12 @@ class _ChatState extends State { horizontal: max( 0, (MediaQuery.of(context).size.width - - FluffyThemes.columnWidth * 3.5) / + FluffyThemes.columnWidth * + (2.5 + + (AdaptivePageLayout.of(context) + .threeColumnMode(context) + ? 0 + : 1))) / 2), ), reverse: true,