From d69696b7262a8155fe132e6f1814b09942082383 Mon Sep 17 00:00:00 2001 From: sh95014 <95387068+sh95014@users.noreply.github.com> Date: Mon, 18 Dec 2023 21:46:39 -0800 Subject: [PATCH] separator should extend to leading margin (#1763) --- IceCubesApp/App/Tabs/Settings/DisplaySettingsView.swift | 3 +++ 1 file changed, 3 insertions(+) diff --git a/IceCubesApp/App/Tabs/Settings/DisplaySettingsView.swift b/IceCubesApp/App/Tabs/Settings/DisplaySettingsView.swift index 5f2829c7..4250e5a1 100644 --- a/IceCubesApp/App/Tabs/Settings/DisplaySettingsView.swift +++ b/IceCubesApp/App/Tabs/Settings/DisplaySettingsView.swift @@ -216,6 +216,9 @@ struct DisplaySettingsView: View { Text("settings.display.max-reply-indentation-\(String(userPreferences.maxReplyIndentation))") .font(.scaledBody) } + .alignmentGuide(.listRowSeparatorLeading) { d in + d[.leading] + } } Toggle("settings.display.show-account-popover", isOn: $userPreferences.showAccountPopover) }