mirror of
https://github.com/cookiengineer/audacity
synced 2026-02-15 23:44:59 +01:00
Bug1193: Mac font sizes as in 2.1.1 for ruler, sel toolbars
This commit is contained in:
@@ -113,7 +113,14 @@ void SelectionBar::Populate()
|
||||
mLeftTime = mRightTime = mAudioTime = nullptr;
|
||||
|
||||
// This will be inherited by all children:
|
||||
SetFont(wxFont(9, wxFONTFAMILY_SWISS, wxFONTSTYLE_NORMAL, wxFONTWEIGHT_NORMAL));
|
||||
SetFont(wxFont(
|
||||
#ifdef __WXMAC__
|
||||
12
|
||||
#else
|
||||
9
|
||||
#endif
|
||||
,
|
||||
wxFONTFAMILY_SWISS, wxFONTSTYLE_NORMAL, wxFONTWEIGHT_NORMAL));
|
||||
|
||||
wxFlexGridSizer *mainSizer;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user