X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/99b486ab37f685f39a3aa27ffc82c8b1fa2cbbf3..503271a5743fb372ad7cfce3438a11e3aca782fc:/wxPython/wx/py/editwindow.py

diff --git a/wxPython/wx/py/editwindow.py b/wxPython/wx/py/editwindow.py
index cb1811f675..90aebf5953 100644
--- a/wxPython/wx/py/editwindow.py
+++ b/wxPython/wx/py/editwindow.py
@@ -19,11 +19,11 @@ from version import VERSION
 if 'wxMSW' in wx.PlatformInfo:
     FACES = { 'times'     : 'Times New Roman',
               'mono'      : 'Courier New',
-              'helv'      : 'Lucida Console',
+              'helv'      : 'Arial',
               'lucida'    : 'Lucida Console',
               'other'     : 'Comic Sans MS',
               'size'      : 10,
-              'lnsize'    : 9,
+              'lnsize'    : 8,
               'backcol'   : '#FFFFFF',
               'calltipbg' : '#FFFFB8',
               'calltipfg' : '#404040',
@@ -41,7 +41,19 @@ elif 'wxGTK' in wx.PlatformInfo and 'gtk2' in wx.PlatformInfo:
               'calltipfg' : '#404040',
             }
 
-else: # GTK1, OSX, etc.
+elif 'wxMac' in wx.PlatformInfo:
+    FACES = { 'times'     : 'Lucida Grande',
+              'mono'      : 'Courier New',
+              'helv'      : 'Geneva',
+              'other'     : 'new century schoolbook',
+              'size'      : 13,
+              'lnsize'    : 10,
+              'backcol'   : '#FFFFFF',
+              'calltipbg' : '#FFFFB8',
+              'calltipfg' : '#404040',
+            }
+
+else: # GTK1, etc.
     FACES = { 'times'     : 'Times',
               'mono'      : 'Courier',
               'helv'      : 'Helvetica',