summaryrefslogtreecommitdiff
path: root/gr-wxgui/python/wxgui/forms/forms.py
diff options
context:
space:
mode:
authorJohnathan Corgan <johnathan@corganlabs.com>2014-08-17 14:57:48 -0700
committerJohnathan Corgan <johnathan@corganlabs.com>2014-08-17 14:57:48 -0700
commitf5cb6160333ed1eb698a4477439e66a792f4efa2 (patch)
treefbb0894c9227af1f4b668ffdc6accc64e9aa62ff /gr-wxgui/python/wxgui/forms/forms.py
parentc84e7f49eb5e948ef5b041e6e56a3b961070b7bd (diff)
parentfd2ec0b1eb5713124161da2934964769290eb2e4 (diff)
Merge branch 'maint'
Diffstat (limited to 'gr-wxgui/python/wxgui/forms/forms.py')
-rw-r--r--gr-wxgui/python/wxgui/forms/forms.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-wxgui/python/wxgui/forms/forms.py b/gr-wxgui/python/wxgui/forms/forms.py
index db55472210..f819f13397 100644
--- a/gr-wxgui/python/wxgui/forms/forms.py
+++ b/gr-wxgui/python/wxgui/forms/forms.py
@@ -515,13 +515,13 @@ class notebook(_chooser_base):
_chooser_base.__init__(self, **kwargs)
assert len(pages) == len(self._choices)
self._notebook = notebook
- self._notebook.Bind(wx.EVT_NOTEBOOK_PAGE_CHANGED, self._handle)
+ self._notebook.Bind(wx.EVT_NOTEBOOK_PAGE_CHANGING, self._handle)
#add pages, setting the label on each tab
for i, page in enumerate(pages):
self._notebook.AddPage(page, self._labels[i])
self._add_widget(self._notebook)
- def _handle(self, event): self[INT_KEY] = self._notebook.GetSelection()
+ def _handle(self, event): self[INT_KEY] = event.GetSelection()
# SetSelection triggers a page change event (deprecated, breaks on Windows) and ChangeSelection does not
def _update(self, i): self._notebook.ChangeSelection(i)