1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-01 16:39:30 +02:00

Bug 2087 - Mixer Board gain control dialog is ridiculously over-long vertically

This commit is contained in:
James Crook 2019-03-29 19:20:30 +00:00
parent 2de696b461
commit d994860311

View File

@ -983,7 +983,9 @@ bool LWSlider::DoShowDialog(wxPoint pos)
wxID_ANY,
mName,
pos,
wxSize( mWidth, mHeight ),
// Bug 2087. wxMin takes care of case where
// slider is vertical (tall and narrow)
wxSize( mWidth, wxMin( mWidth, mHeight) ),
mStyle,
Get(),
mScrollLine,