mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-20 17:41:13 +02:00
Fix (again) TAB key navigation to graphic EQ sliders on Mac...
... original fix was atc8d95e1
regression was at3e98a10
This commit is contained in:
committed by
James Crook
parent
d3f1893e9f
commit
eb2161d3aa
@@ -859,7 +859,7 @@ void EffectEqualization::PopulateOrExchange(ShuttleGui & S)
|
||||
S.AddSpace(15,0);
|
||||
for (int i = 0; (i < NUMBER_OF_BANDS) && (kThirdOct[i] <= mHiFreq); ++i)
|
||||
{
|
||||
mSliders[i] = safenew wxSlider(pParent, ID_Slider + i, 0, -20, +20,
|
||||
mSliders[i] = safenew wxSliderWrapper(pParent, ID_Slider + i, 0, -20, +20,
|
||||
wxDefaultPosition, wxSize(-1,150), wxSL_VERTICAL | wxSL_INVERSE);
|
||||
|
||||
mSliders[i]->Bind(wxEVT_ERASE_BACKGROUND,
|
||||
|
Reference in New Issue
Block a user