diff options
author | Sebastian Koslowski <koslowski@kit.edu> | 2014-12-30 17:57:32 +0100 |
---|---|---|
committer | Sebastian Koslowski <koslowski@kit.edu> | 2014-12-30 17:57:32 +0100 |
commit | 3a3bfd24b184af47cd2a579c7de5c9ad5ea9a0b0 (patch) | |
tree | 6cbaa4010e562a28d315cf3bd1a5d6b377c0f9c4 /gr-wxgui/python | |
parent | 9e0e18fa0bf47c7f37d92e3b408b2c4cf0314667 (diff) |
wxgui+grc: stop bypassing hier_block2 proxy class
Diffstat (limited to 'gr-wxgui/python')
-rw-r--r-- | gr-wxgui/python/wxgui/common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-wxgui/python/wxgui/common.py b/gr-wxgui/python/wxgui/common.py index b051863441..de2648466b 100644 --- a/gr-wxgui/python/wxgui/common.py +++ b/gr-wxgui/python/wxgui/common.py @@ -49,7 +49,7 @@ class wxgui_hb(object): """ try: assert points[0] == self or points[0][0] == self - copy = blocks.copy(self._hb.input_signature().sizeof_stream_item(0)) + copy = blocks.copy(self.input_signature().sizeof_stream_item(0)) handler = self._handler_factory(copy.set_enabled) if not RUN_ALWAYS: handler(False) # initially disable the copy block |