X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f9b24f070c67c61d11a0032054e0a229d876f38d..c31c771b2d9fff41ff774bbc4515c36f3692dbe0:/wxPython/demo/ScrolledPanel.py diff --git a/wxPython/demo/ScrolledPanel.py b/wxPython/demo/ScrolledPanel.py index e4a0bb507d..bd54d5bf29 100644 --- a/wxPython/demo/ScrolledPanel.py +++ b/wxPython/demo/ScrolledPanel.py @@ -10,8 +10,7 @@ class ScrolledPanel(wxScrolledWindow): def __init__(self, parent, log): self.log = log wxScrolledWindow.__init__(self, parent, -1, - style = wxTAB_TRAVERSAL|wxHSCROLL|wxVSCROLL) - + style = wxTAB_TRAVERSAL) box = wxBoxSizer(wxVERTICAL) box.Add(wxStaticText(self, -1, @@ -73,10 +72,6 @@ class ScrolledPanel(wxScrolledWindow): #---------------------------------------------------------------------- -## class ScrollToHandler(wxEvtHandler): -## """This class helps to scroll the panel - -#---------------------------------------------------------------------- def runTest(frame, nb, log): win = ScrolledPanel(nb, log)