This reverts commit33a0c10650, reversing changes made to2077655694. Reverting merges fucks up git, but oh well - we probably better merge stuff manually rather than fucking up master with wx3 which is apparently buggy
9 lines
123 B
Python
9 lines
123 B
Python
import wx
|
|
|
|
if 'wxMac' in wx.PlatformInfo:
|
|
sizes = (10, 11, 12)
|
|
else:
|
|
sizes = (7, 8, 9)
|
|
|
|
SMALL, NORMAL, BIG = sizes
|