X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d56cebe7a497773d8753ea2ab874c4445bac18dc..80823340ab3da196d5225b7c7087f4b7a7dcc35e:/wxPython/demo/wxChoice.py?ds=sidebyside diff --git a/wxPython/demo/wxChoice.py b/wxPython/demo/wxChoice.py index da6fa7b2a0..9cd83ce3b2 100644 --- a/wxPython/demo/wxChoice.py +++ b/wxPython/demo/wxChoice.py @@ -15,8 +15,7 @@ class TestChoice(wxPanel): wxPoint(15, 10)) wxStaticText(self, -1, "Select one:", wxPoint(15, 50), wxSize(75, 20)) - self.ch = wxChoice(self, 40, (80, 50), (95, 125), - choices = sampleList) + self.ch = wxChoice(self, 40, (80, 50), choices = sampleList) EVT_CHOICE(self, 40, self.EvtChoice)