Skip to content

Commit

Permalink
Lower minimum Speed value to 0.25.
Browse files Browse the repository at this point in the history
For feature parity with YouTube.
  • Loading branch information
Smu1zel committed Mar 2, 2025
1 parent 53c5356 commit a20e9b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/scenes/video_player.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ void VideoPlayer_init(void) {
network_decoder.set_preamp(volume);
}),
(new BarView(0, 0, 260, 30)) // speed
->set_values(0.3, 1.5, 1.0)
->set_values(0.25, 1.5, 1.0)
->set_title([] (const BarView &view) { return LOCALIZED(SPEED) + " : " + std::to_string((int) std::round(view.get_value() * 100)) + "%"; })
->set_while_holding([] (BarView &view) {
view.fix_close_values(0.97, 1.0, 1.03);
Expand Down

0 comments on commit a20e9b0

Please sign in to comment.