mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-10 16:43:33 +02:00
Fix Graphic EQ slider height tiny on Linux.
Thanks to Steve for alerting to the problem.
This commit is contained in:
@@ -859,7 +859,7 @@ void EffectEqualization::PopulateOrExchange(ShuttleGui & S)
|
||||
for (int i = 0; (i < NUMBER_OF_BANDS) && (kThirdOct[i] <= mHiFreq); ++i)
|
||||
{
|
||||
mSliders[i] = safenew wxSlider(pParent, ID_Slider + i, 0, -20, +20,
|
||||
wxDefaultPosition, wxDefaultSize, wxSL_VERTICAL | wxSL_INVERSE);
|
||||
wxDefaultPosition, wxSize(-1,150), wxSL_VERTICAL | wxSL_INVERSE);
|
||||
|
||||
mSliders[i]->Bind(wxEVT_ERASE_BACKGROUND,
|
||||
// ignore it
|
||||
|
Reference in New Issue
Block a user