fix: changed position slider step from 1.0 to 0.01

now it looks fine when playing short files
This commit is contained in:
2026-01-02 03:58:38 +03:00
parent ac667f1273
commit c5086189d6
+1 -1
View File
@@ -130,7 +130,7 @@ impl SoundpadGui {
0.0..=self.audio_player_state.duration, 0.0..=self.audio_player_state.duration,
) )
.show_value(false) .show_value(false)
.step_by(1.0); .step_by(0.01);
let default_slider_width = ui.spacing().slider_width; let default_slider_width = ui.spacing().slider_width;
let position_slider_width = ui.available_width() let position_slider_width = ui.available_width()