Skip to content

Commit

Permalink
use accentColor for "max" noise reduction
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-marek committed Apr 18, 2023
1 parent f48a761 commit 88f9815
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion burstphoto/ContentView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ struct SettingsView: View {

(Text("Noise reduction: ") +
(settings.noise_reduction == 23
? Text("max. ").foregroundColor(.red) + Text("(simple average w/o alignment)")
? Text("max. ").foregroundColor(.accentColor) + Text("(simple average w/o alignment)")
: Text("\(Int(settings.noise_reduction))")
)).font(.system(size: 14, weight: .medium))
.opacity(user_changing_nr ? 0.75 : 1.0)
Expand Down

0 comments on commit 88f9815

Please sign in to comment.