mirror of
https://github.com/cookiengineer/audacity
synced 2026-02-08 20:52:09 +01:00
Bug1193: Mac font sizes as in 2.1.1 for ruler, sel toolbars
This commit is contained in:
@@ -110,7 +110,14 @@ void SpectralSelectionBar::Populate()
|
||||
gPrefs->Read(preferencePath, &mbCenterAndWidth, true);
|
||||
|
||||
// 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));
|
||||
|
||||
/* we don't actually need a control yet, but we want to use its methods
|
||||
* to do some look-ups, so we'll have to create one. We can't make the
|
||||
|
||||
Reference in New Issue
Block a user