summaryrefslogtreecommitdiff
path: root/grc/python/flow_graph.tmpl
diff options
context:
space:
mode:
authorJosh Blum2011-03-04 09:08:37 -0800
committerJosh Blum2011-03-04 09:08:37 -0800
commit028f105b345c937f69aa5701e0de7761a2c6fcf3 (patch)
tree5c34ecbdad30d8916ddb25ee50581047d8d28778 /grc/python/flow_graph.tmpl
parent5bffcb2b1443f85bf695b48b57e6b16634ba331c (diff)
downloadgnuradio-028f105b345c937f69aa5701e0de7761a2c6fcf3.tar.gz
gnuradio-028f105b345c937f69aa5701e0de7761a2c6fcf3.tar.bz2
gnuradio-028f105b345c937f69aa5701e0de7761a2c6fcf3.zip
qtgui-grc: use a vboxlayout for the top_layout
Diffstat (limited to 'grc/python/flow_graph.tmpl')
-rw-r--r--grc/python/flow_graph.tmpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/python/flow_graph.tmpl b/grc/python/flow_graph.tmpl
index 854d83967..070ad7ed1 100644
--- a/grc/python/flow_graph.tmpl
+++ b/grc/python/flow_graph.tmpl
@@ -63,7 +63,7 @@ class $(class_name)(gr.top_block, Qt.QWidget):
def __init__($param_str):
gr.top_block.__init__(self, "$title")
Qt.QWidget.__init__(self)
- self.top_layout = Qt.QBoxLayout(Qt.QBoxLayout.TopToBottom, self)
+ self.top_layout = Qt.QVBoxLayout(self)
self.top_grid_layout = Qt.QGridLayout()
self.top_layout.addLayout(self.top_grid_layout)
#elif $generate_options == 'no_gui'