mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-26 09:08:44 +02:00
Steve's patch for http://bugzilla.audacityteam.org/show_bug.cgi?id=70
This commit is contained in:
parent
7b95226449
commit
d589b9d207
@ -88,6 +88,7 @@ void MixerToolBar::Populate()
|
||||
|
||||
mOutputSlider = new ASlider(this, wxID_ANY, _("Output Volume"),
|
||||
wxDefaultPosition, wxSize(130, 25));
|
||||
mOutputSlider->SetScroll(0.1f, 2.0f);
|
||||
mOutputSlider->SetName(_("Slider Output"));
|
||||
Add(mOutputSlider, 0, wxALIGN_CENTER);
|
||||
|
||||
@ -99,6 +100,7 @@ void MixerToolBar::Populate()
|
||||
|
||||
mInputSlider = new ASlider(this, wxID_ANY, _("Input Volume"),
|
||||
wxDefaultPosition, wxSize(130, 25));
|
||||
mInputSlider->SetScroll(0.1f, 2.0f);
|
||||
mInputSlider->SetName(_("Slider Input"));
|
||||
Add(mInputSlider, 0, wxALIGN_CENTER);
|
||||
|
||||
|
@ -180,7 +180,8 @@ void TranscriptionToolBar::Populate()
|
||||
SPEED_SLIDER);
|
||||
mPlaySpeedSlider->Set(1.0);
|
||||
mPlaySpeedSlider->SetLabel(_("Playback Speed"));
|
||||
mPlaySpeedSlider->SetScroll(0.1f, 0.5f);
|
||||
// 6 steps using page up/down, and 60 using arrow keys
|
||||
mPlaySpeedSlider->SetScroll(0.16667f, 1.6667f);
|
||||
Add( mPlaySpeedSlider, 0, wxALIGN_CENTER );
|
||||
mPlaySpeedSlider->Connect(wxEVT_SET_FOCUS,
|
||||
wxFocusEventHandler(TranscriptionToolBar::OnFocus),
|
||||
|
Loading…
x
Reference in New Issue
Block a user