Revert "fixed display order"

This reverts commit fd3591c666.
This commit is contained in:
Francesco 2025-04-25 21:04:45 +02:00
parent fd3591c666
commit f77aab696c
2 changed files with 3 additions and 4 deletions

View file

@ -38,7 +38,6 @@ 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()
@ -51,6 +50,8 @@ struct SettingsViewGeneral: View {
Text("\(episodeChunkSize)")
}
}
Toggle("Fetch Episode metadata", isOn: $fetchEpisodeMetadata)
.tint(.accentColor)
HStack {
Text("Episode Sort Order")
@ -65,9 +66,6 @@ struct SettingsViewGeneral: View {
}
}
Toggle("Fetch Episode metadata", isOn: $fetchEpisodeMetadata)
.tint(.accentColor)
HStack {
Text("Metadata Provider")
Spacer()

View file

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