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:
parent
c8360419c3
commit
7b94844e38
1 changed files with 4 additions and 7 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue