1
0
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:
Paul Licameli
2016-06-22 14:08:55 -04:00
parent 21ea9a5ead
commit de9579dbe9
3 changed files with 30 additions and 7 deletions

View File

@@ -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