summaryrefslogtreecommitdiff
path: root/gr-wxgui/src/python/termsink.py
diff options
context:
space:
mode:
authorJohnathan Corgan2009-10-15 11:00:30 -0700
committerJohnathan Corgan2009-10-29 07:00:34 -0700
commit00613b260a36923509eab1811256815269dcd99c (patch)
tree40d874e03bd032af901593e90978495e446a5d54 /gr-wxgui/src/python/termsink.py
parent92f2da3450b3ae0a5d16d322ad42c7812c4ffc62 (diff)
downloadgnuradio-00613b260a36923509eab1811256815269dcd99c.tar.gz
gnuradio-00613b260a36923509eab1811256815269dcd99c.tar.bz2
gnuradio-00613b260a36923509eab1811256815269dcd99c.zip
Add placeholder panel for console, use old style window size
Diffstat (limited to 'gr-wxgui/src/python/termsink.py')
-rw-r--r--gr-wxgui/src/python/termsink.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/gr-wxgui/src/python/termsink.py b/gr-wxgui/src/python/termsink.py
index 92aba47f4..2c583b115 100644
--- a/gr-wxgui/src/python/termsink.py
+++ b/gr-wxgui/src/python/termsink.py
@@ -24,7 +24,10 @@ import common
from gnuradio import gr
class termsink(gr.hier_block2, common.wxgui_hb):
- def __init__(self,parent):
+ def __init__(self,
+ parent,
+ ):
+
gr.hier_block2.__init__(
self,
"termsink",
@@ -34,5 +37,5 @@ class termsink(gr.hier_block2, common.wxgui_hb):
self.win = term_window.term_window(
parent=parent,
+ size=term_window.DEFAULT_WIN_SIZE,
)
-