From: Josh Blum Date: Tue, 13 Oct 2009 01:35:10 +0000 (-0700) Subject: fix so all handlers get called on event X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=e9e2ce03af5fb68e168be4e68ef4183a7eb775d5;p=debian%2Fgnuradio fix so all handlers get called on event --- diff --git a/gr-wxgui/src/python/common.py b/gr-wxgui/src/python/common.py index fa11b315..a75f6810 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)