We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd4b16c commit 73b0469Copy full SHA for 73b0469
src/app.rs
@@ -115,12 +115,12 @@ impl Window {
115
.tooltip(&monitor.name),
116
)
117
.push(slider(
118
- 50..=200,
119
- (monitor.gamma_curve * 100.0) as u32,
120
- move |curve| Message::SetScreenCurve(id.clone(), curve as f32 / 100.0),
+ 5..=20,
+ (monitor.gamma_curve * 10.0) as u32,
+ move |curve| Message::SetScreenCurve(id.clone(), curve as f32 / 10.0),
121
))
122
.push(
123
- text(format!("{:.2}", monitor.gamma_curve))
+ text(format!("{:.1}", monitor.gamma_curve))
124
.size(16)
125
.width(Length::Fixed(40.0)),
126
0 commit comments