separator should extend to leading margin (#1763)

This commit is contained in:
sh95014 2023-12-18 21:46:39 -08:00 committed by GitHub
parent 9fb8d4e484
commit d69696b726
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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)
}