1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-04-30 15:49:41 +02:00

Criterion for meter single height or double height when docked made same as size for switching meter from compact to not.

This commit is contained in:
james.k.crook@gmail.com 2014-11-09 15:55:24 +00:00
parent 7ee3c47441
commit 8bd3891561

View File

@ -228,7 +228,7 @@ wxSize MeterToolBar::GetDockedSize()
sz.x = wxMax( sz.x, sz2.x );
sz.y = wxMax( sz.y, sz2.y );
// 50 is the size where we switch from expanded to compact.
if( sz.y < 55 )
if( sz.y < 50 )
sz.y = tbs-1;
else
sz.y = 2 * tbs -1;