mirror of
https://github.com/cranci1/Sora.git
synced 2026-04-21 00:22:12 +00:00
fixed display order
This commit is contained in:
parent
1637383a19
commit
fd3591c666
2 changed files with 4 additions and 3 deletions
|
|
@ -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.")) {
|
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 {
|
HStack {
|
||||||
Text("Episodes Range")
|
Text("Episodes Range")
|
||||||
Spacer()
|
Spacer()
|
||||||
|
|
@ -50,8 +51,6 @@ struct SettingsViewGeneral: View {
|
||||||
Text("\(episodeChunkSize)")
|
Text("\(episodeChunkSize)")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Toggle("Fetch Episode metadata", isOn: $fetchEpisodeMetadata)
|
|
||||||
.tint(.accentColor)
|
|
||||||
|
|
||||||
HStack {
|
HStack {
|
||||||
Text("Episode Sort Order")
|
Text("Episode Sort Order")
|
||||||
|
|
@ -66,6 +65,9 @@ struct SettingsViewGeneral: View {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Toggle("Fetch Episode metadata", isOn: $fetchEpisodeMetadata)
|
||||||
|
.tint(.accentColor)
|
||||||
|
|
||||||
HStack {
|
HStack {
|
||||||
Text("Metadata Provider")
|
Text("Metadata Provider")
|
||||||
Spacer()
|
Spacer()
|
||||||
|
|
|
||||||
|
|
@ -205,5 +205,4 @@ struct SettingsViewModule: View {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue