1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-16 16:10:06 +02:00

Restore default meter size.

The meters are back to the length they used to be (with a little space lost for the grabber).  If we want to increase their default lengths then we should look at the space saver idea (make them less tall) or else widen the initial size of Audacity main screen.
This commit is contained in:
james.k.crook@gmail.com 2014-10-26 14:42:25 +00:00
parent a57d8f3b51
commit 51be26b49b

View File

@ -46,7 +46,8 @@ class MeterToolBar:public ToolBar {
virtual void OnSize(wxSizeEvent & event);
virtual bool Expose( bool show );
int GetInitialWidth() {return 338;}
int GetInitialWidth() {return (mWhichMeters ==
(kWithRecordMeter + kWithPlayMeter)) ? 338 : 165;}
int GetMinToolbarWidth() { return 100; }
private: