From 7b94844e38ec733501b868533e2c2d6f707d0f3d Mon Sep 17 00:00:00 2001 From: Dallas Groot Date: Fri, 10 Apr 2026 07:41:31 -0700 Subject: [PATCH] renamed label MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit • 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 --- iOS/Views/Library/DownloadsSettingsView.swift | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/iOS/Views/Library/DownloadsSettingsView.swift b/iOS/Views/Library/DownloadsSettingsView.swift index fe36bcc..c78a7a9 100644 --- a/iOS/Views/Library/DownloadsSettingsView.swift +++ b/iOS/Views/Library/DownloadsSettingsView.swift @@ -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