[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] [gnuradio] 01/01: wxgui: fixes a bug with wx > 3.0.
From: |
git |
Subject: |
[Commit-gnuradio] [gnuradio] 01/01: wxgui: fixes a bug with wx > 3.0. |
Date: |
Thu, 19 Feb 2015 22:30:46 +0000 (UTC) |
This is an automated email from the git hooks/post-receive script.
jcorgan pushed a commit to branch maint
in repository gnuradio.
commit 3f4cec961c359ca51b46bd9a5b15d5bfd43c7673
Author: James Saari <address@hidden>
Date: Fri Feb 13 17:32:45 2015 -0500
wxgui: fixes a bug with wx > 3.0.
See Issue #762 for details and discussion.
---
gr-wxgui/grc/top_block_gui.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/gr-wxgui/grc/top_block_gui.py b/gr-wxgui/grc/top_block_gui.py
index 3a51450..24b462d 100644
--- a/gr-wxgui/grc/top_block_gui.py
+++ b/gr-wxgui/grc/top_block_gui.py
@@ -47,6 +47,7 @@ class top_block_gui(gr.top_block):
self.Add = self._panel.Add
self.GridAdd = self._panel.GridAdd
self.GetWin = self._panel.GetWin
+ self.Start(False)
def SetIcon(self, *args, **kwargs): self._frame.SetIcon(*args, **kwargs)