Skip to content

Commit 9ecc002

Browse files
committed
fixed bounds on tiled sampling
1 parent 19dfaff commit 9ecc002

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ui.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,7 @@ pub fn window_main(renderer: Arc<Mutex<FractalRenderer>>) -> impl Widget<Fractal
487487
.with_child(Flex::row()
488488
.with_child(Label::new("Tiled sampling:"))
489489
.with_flex_child(Slider::new()
490-
.with_range(1.0, 100.0)
490+
.with_range(2.0, 100.0)
491491
.expand_width()
492492
.lens(FractalData::probe_sampling.map(
493493
|val| *val as f64,

0 commit comments

Comments
 (0)