come on man

This commit is contained in:
Francesco 2025-04-25 21:39:02 +02:00
parent 37b330be45
commit 4f524964d0

View file

@ -52,19 +52,6 @@ struct SettingsViewGeneral: View {
}
}
HStack {
Text("Episode Sort Order")
Spacer()
Menu(episodeSortOrder) {
Button(action: { episodeSortOrder = "Ascending" }) {
Text("Ascending (1-100)")
}
Button(action: { episodeSortOrder = "Descending" }) {
Text("Descending (100-1)")
}
}
}
Toggle("Fetch Episode metadata", isOn: $fetchEpisodeMetadata)
.tint(.accentColor)