Fix fonts and lag with OS X

This commit is contained in:
blitzmann
2014-12-11 23:25:44 -05:00
parent 359840aee8
commit 88074c8516
4 changed files with 24 additions and 15 deletions

8
gui/utils/fonts.py Normal file
View File

@@ -0,0 +1,8 @@
import wx
if 'wxMac' in wx.PlatformInfo:
sizes = (10, 11, 12)
else:
sizes = (7, 8, 9)
SMALL, NORMAL, BIG = sizes