X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/51aad6d34f4f434686868d926437c8cad3984824..d2af7584c06c501864ae0976535a7f99e91d8fd5:/wxPython/demo/Main.py diff --git a/wxPython/demo/Main.py b/wxPython/demo/Main.py index 4fe4988015..2b441e9dfc 100644 --- a/wxPython/demo/Main.py +++ b/wxPython/demo/Main.py @@ -247,7 +247,7 @@ _treeList = [ # Images ('Using Images', [ 'AlphaDrawing', - 'AnimationCtrl', + 'AnimateCtrl', 'ArtProvider', 'BitmapFromBuffer', 'Cursor', @@ -491,6 +491,11 @@ try: if wx.Platform == '__WXMSW__': self.StyleSetSpec(stc.STC_STYLE_DEFAULT, 'fore:#000000,back:#FFFFFF,face:Courier New,size:9') + elif wx.Platform == '__WXMAC__': + # TODO: if this looks fine on Linux too, remove the Mac-specific case + # and use this whenever OS != MSW. + self.StyleSetSpec(stc.STC_STYLE_DEFAULT, + 'fore:#000000,back:#FFFFFF,face:Courier') else: self.StyleSetSpec(stc.STC_STYLE_DEFAULT, 'fore:#000000,back:#FFFFFF,face:Courier,size:9')