renamed label

•	Smart DJ & Visualizer row label → Crossfade & Visualizer Analyzer
(and removed the misplaced style value from that row)
	•	Visualizer Appearance row now shows the active style (e.g. “Wave”)
as the trailing label, which is where it belongs
	•	Navigation title inside the subview updated to match
This commit is contained in:
Dallas Groot 2026-04-10 07:41:31 -07:00
parent c8360419c3
commit 7b94844e38

View file

@ -640,18 +640,15 @@ struct SettingsView: View {
NavigationLink {
SmartDJVisualizerSettingsView()
} label: {
HStack {
Text("Smart DJ & Visualizer")
Spacer()
Text(VisualizerSettings.shared.style.rawValue)
.foregroundColor(.gray)
}
Text("Crossfade & Visualizer Analyzer")
}
Button(action: { showVisualizerSettings = true }) {
HStack {
Text("Visualizer Appearance")
.foregroundColor(.white)
Spacer()
Text(VisualizerSettings.shared.style.rawValue)
.foregroundColor(.gray)
Image(systemName: "chevron.right")
.font(.system(size: 12))
.foregroundColor(.gray)
@ -837,7 +834,7 @@ struct SmartDJVisualizerSettingsView: View {
}
} header: { Text("Cache") }
}
.navigationTitle("Smart DJ & Visualizer")
.navigationTitle("Crossfade & Visualizer Analyzer")
.navigationBarTitleDisplayMode(.inline)
.onAppear {
smartDJCacheCount = SmartDJCache.shared.cachedCount