From e9e2ce03af5fb68e168be4e68ef4183a7eb775d5 Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Mon, 12 Oct 2009 18:35:10 -0700 Subject: fix so all handlers get called on event --- gr-wxgui/src/python/common.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'gr-wxgui/src') diff --git a/gr-wxgui/src/python/common.py b/gr-wxgui/src/python/common.py index fa11b3152..a75f6810d 100644 --- a/gr-wxgui/src/python/common.py +++ b/gr-wxgui/src/python/common.py @@ -1,5 +1,5 @@ # -# Copyright 2008 Free Software Foundation, Inc. +# Copyright 2008, 2009 Free Software Foundation, Inc. # # This file is part of GNU Radio # @@ -89,7 +89,10 @@ class wxgui_hb(object): my_win = parent #call the handler, the arg is shown or not def handler_factory(my_win, my_handler): - return lambda *args: my_handler(is_wx_window_visible(my_win)) + def callback(evt): + my_handler(is_wx_window_visible(my_win)) + evt.Skip() #skip so all bound handlers are called + return callback handler = handler_factory(win, handler) #bind the handler to all the parent notebooks win.Bind(wx.EVT_UPDATE_UI, handler) -- cgit