X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a541c325865cd11d1ba8ef25333b8650b2823c8a..830efc9b0cb87eae22d4435af7858175017522ab:/wxPython/demo/simple.py diff --git a/wxPython/demo/simple.py b/wxPython/demo/simple.py index 3b4cdfca35..beed3ee0cd 100644 --- a/wxPython/demo/simple.py +++ b/wxPython/demo/simple.py @@ -23,11 +23,7 @@ class MyFrame(wxFrame): self.SetMenuBar(menuBar) panel = wxPanel(self, -1) - if wxPlatform == "__WXMAC__": - text = wxStaticText(panel, -1, - "Hello World!\nWhere is my menu?") - else: - text = wxStaticText(panel, -1, "Hello World!") + text = wxStaticText(panel, -1, "Hello World!") text.SetFont(wxFont(12, wxSWISS, wxNORMAL, wxBOLD)) text.SetSize(text.GetBestSize()) btn = wxButton(panel, -1, "Close")