diff options
author | Sylvain Munaut <246tnt@gmail.com> | 2013-10-25 21:20:16 -0500 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2013-10-25 21:21:20 -0500 |
commit | a8a596eac925ea57fd83273df70bb6736abab998 (patch) | |
tree | 2d958378b7559d13218ebb885ab88fd95956e764 /gr-wxgui/python/wxgui/stdgui2.py | |
parent | e352bf44d73a59818c5fc5831f52092c28d17623 (diff) |
wxgui: ensure flowgraph shutdown before app exit
Also updates qtgui
Diffstat (limited to 'gr-wxgui/python/wxgui/stdgui2.py')
-rw-r--r-- | gr-wxgui/python/wxgui/stdgui2.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gr-wxgui/python/wxgui/stdgui2.py b/gr-wxgui/python/wxgui/stdgui2.py index b38589988e..d983dd58cd 100644 --- a/gr-wxgui/python/wxgui/stdgui2.py +++ b/gr-wxgui/python/wxgui/stdgui2.py @@ -79,6 +79,7 @@ class stdframe (wx.Frame): def OnCloseWindow (self, event): self.top_block().stop() + self.top_block().wait() self.Destroy () def top_block (self): |