diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-02-21 11:56:47 -0500 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2013-02-21 11:57:13 -0500 |
commit | 0e51289eb2ac5aa0089c8f38b69f966e69fe28d8 (patch) | |
tree | cddae3f1de5412d1bea61f6345b63155f2753f7c /gr-qtgui/apps/plot_time_form.py | |
parent | 18b20e591ffb20951605dfc4b7cbe5964b5159fa (diff) |
qtgui: improved handling of static plot tools.
Diffstat (limited to 'gr-qtgui/apps/plot_time_form.py')
-rw-r--r-- | gr-qtgui/apps/plot_time_form.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-qtgui/apps/plot_time_form.py b/gr-qtgui/apps/plot_time_form.py index dbdf4a464c..30701c8d37 100644 --- a/gr-qtgui/apps/plot_time_form.py +++ b/gr-qtgui/apps/plot_time_form.py @@ -36,8 +36,8 @@ except ImportError: from plot_form import plot_form class plot_time_form(plot_form): - def __init__(self, top_block, title=''): - plot_form.__init__(self, top_block, title) + def __init__(self, top_block, title='', scale=1): + plot_form.__init__(self, top_block, title, scale) self.right_col_layout = QtGui.QVBoxLayout() self.right_col_form = QtGui.QFormLayout() |