From f3dc3eabfcd80bd541bdbd4843b5de38e28261f9 Mon Sep 17 00:00:00 2001 From: Augustin Cavalier Date: Tue, 14 Mar 2023 15:08:41 -0400 Subject: [PATCH] Mail: Increase the minimum size of the attachments view. This restores approximately the old fixed size from before the previous commit. Ideally this would be the preferred size, not the minimum size, but that isn't quite possible when contained in a scroll view. --- src/apps/mail/Enclosures.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/mail/Enclosures.cpp b/src/apps/mail/Enclosures.cpp index 67799a3ae7..193d70f9d5 100644 --- a/src/apps/mail/Enclosures.cpp +++ b/src/apps/mail/Enclosures.cpp @@ -331,7 +331,7 @@ BSize TListView::MinSize() { BSize size = BListView::MinSize(); - size.height = be_control_look->DefaultLabelSpacing() * 5; + size.height = be_control_look->DefaultLabelSpacing() * 11.0f; return size; }