Updated README

This commit is contained in:
2026-01-23 10:51:12 +03:00
committed by GitHub
parent 6decbfdca1
commit e3a378cc6e

View File

@@ -107,9 +107,9 @@ Knob::new(&mut value, 0.0, 1.0, KnobStyle::Wiper)
#### Logarithmic Knobs
```rust
// Display as percentage
// Enable logarithmic scaling
Knob::new(&mut value, 0.0, 1.0, KnobStyle::Wiper)
.with_logarithmic_scaling(true);
.with_logarithmic_scaling();
```
## Running demo app