fixed display order

This commit is contained in:
Francesco 2025-04-25 20:51:44 +02:00
parent 1637383a19
commit fd3591c666
2 changed files with 4 additions and 3 deletions

View file

@ -38,6 +38,7 @@ struct SettingsViewGeneral: View {
}
Section(header: Text("Media View"), footer: Text("The episode range controls how many episodes appear on each page. Episodes are grouped into sets (like 1-25, 26-50, and so on), allowing you to navigate through them more easily.\n\nFor episode metadata it is refering to the episode thumbnail and title, since sometimes it can contain spoilers.")) {
HStack {
Text("Episodes Range")
Spacer()
@ -50,8 +51,6 @@ struct SettingsViewGeneral: View {
Text("\(episodeChunkSize)")
}
}
Toggle("Fetch Episode metadata", isOn: $fetchEpisodeMetadata)
.tint(.accentColor)
HStack {
Text("Episode Sort Order")
@ -66,6 +65,9 @@ struct SettingsViewGeneral: View {
}
}
Toggle("Fetch Episode metadata", isOn: $fetchEpisodeMetadata)
.tint(.accentColor)
HStack {
Text("Metadata Provider")
Spacer()

View file

@ -205,5 +205,4 @@ struct SettingsViewModule: View {
}
}
}
}