From cf86bb835549d980cb3c5a15887f9a0d3f7d2e66 Mon Sep 17 00:00:00 2001 From: so1omon563 <43015107+so1omon563@users.noreply.github.com> Date: Wed, 5 Aug 2026 08:35:06 -0700 Subject: [PATCH] Fix text insertion mode description wrapping --- Sources/Fluid/UI/SettingsView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/Fluid/UI/SettingsView.swift b/Sources/Fluid/UI/SettingsView.swift index 03574604..ce1b9731 100644 --- a/Sources/Fluid/UI/SettingsView.swift +++ b/Sources/Fluid/UI/SettingsView.swift @@ -864,9 +864,9 @@ struct SettingsView: View { Text(SettingsStore.shared.textInsertionMode.description) .font(self.theme.typography.bodySmall) .foregroundStyle(self.settingsSecondaryText) + .fixedSize(horizontal: false, vertical: true) } - - Spacer() + .frame(maxWidth: .infinity, alignment: .leading) Picker("", selection: Binding( get: { SettingsStore.shared.textInsertionMode },