From b776788b3894f28b889e1027249383824d586bac Mon Sep 17 00:00:00 2001 From: Terry Yiu Date: Mon, 9 Dec 2024 18:36:17 -0500 Subject: [PATCH] Fix SideMenuView text to autoscale and limit to 1 line Changelog-Fixed: Fixed SideMenuView text to autoscale and limit to 1 line Signed-off-by: Terry Yiu --- damus/Views/SideMenuView.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/damus/Views/SideMenuView.swift b/damus/Views/SideMenuView.swift index 484f21bb..b6cb87da 100644 --- a/damus/Views/SideMenuView.swift +++ b/damus/Views/SideMenuView.swift @@ -226,6 +226,8 @@ struct SideMenuView: View { .foregroundColor(DamusColors.adaptableBlack) .frame(maxWidth: .infinity, alignment: .leading) .dynamicTypeSize(.xSmall) + .minimumScaleFactor(0.5) + .lineLimit(1) } } }