Only show the ultra voices prompt on the en voice list

This commit is contained in:
Jackson Harper
2022-11-08 17:15:53 +08:00
parent 5865be5982
commit ed6cea3a87

View File

@ -19,10 +19,12 @@
var body: some View {
Group {
Form {
Toggle("Use Ultra Realistic Voices", isOn: $audioController.useUltraRealisticVoices)
.accentColor(Color.green)
if language.key == "en" {
Toggle("Use Ultra Realistic Voices", isOn: $audioController.useUltraRealisticVoices)
.accentColor(Color.green)
}
if audioController.useUltraRealisticVoices {
if language.key == "en", audioController.useUltraRealisticVoices {
Section {
Text("Ultra realistic voices take longer to generate and do not offer a follow along user interface.")
.multilineTextAlignment(.leading)