Skip to content

Commit

Permalink
Allow higher vibrance strength
Browse files Browse the repository at this point in the history
  • Loading branch information
amadejkastelic committed Sep 11, 2024
1 parent 7142def commit 7c88f91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shaders/vibrance.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ pub fn new(window_class: String, window_title: String, strength: i32) -> Vibranc
VibranceShader {
window_class,
window_title,
strength: utils::int_in_range(strength, 1, 100),
strength: utils::int_in_range(strength, 1, 1000),
}
}

Expand Down

0 comments on commit 7c88f91

Please sign in to comment.