1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-10 16:43:33 +02:00

Play at speed slider: fix page up/down increments

These increments were accidentally changed by the commit: 5e10ec0def

Changed back to original values.
This commit is contained in:
David Bailes
2018-08-20 15:08:32 +01:00
parent 805d7023eb
commit ecb1cbdf3a

View File

@@ -202,7 +202,7 @@ void TranscriptionToolBar::Populate()
.Style( SPEED_SLIDER ) .Style( SPEED_SLIDER )
// 6 steps using page up/down, and 60 using arrow keys // 6 steps using page up/down, and 60 using arrow keys
.Line( 0.16667f ) .Line( 0.16667f )
.Page( 0.16667f ) .Page( 1.6667f )
); );
mPlaySpeedSlider->SetSizeHints(wxSize(100, 25), wxSize(2000, 25)); mPlaySpeedSlider->SetSizeHints(wxSize(100, 25), wxSize(2000, 25));
mPlaySpeedSlider->Set(mPlaySpeed / 100.0); mPlaySpeedSlider->Set(mPlaySpeed / 100.0);