Update SettingsViewGeneral.swift

This commit is contained in:
cranci 2025-03-18 16:24:18 +01:00 committed by GitHub
parent ff57939a39
commit 9621fba368
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -81,7 +81,6 @@ struct SettingsViewGeneral: View {
Section(header: Text("Media Grid Layout"), footer: Text("Adjust the number of media items per row in portrait and landscape modes.")) {
HStack {
Spacer()
if UIDevice.current.userInterfaceIdiom == .pad {
Picker("Portrait Columns", selection: $mediaColumnsPortrait) {
ForEach(1..<6) { i in
@ -99,7 +98,6 @@ struct SettingsViewGeneral: View {
}
}
HStack {
Spacer()
if UIDevice.current.userInterfaceIdiom == .pad {
Picker("Landscape Columns", selection: $mediaColumnsLandscape) {
ForEach(2..<9) { i in