diff options
author | Solomon Tan <solomonbstoner@yahoo.com.au> | 2021-05-19 22:28:34 +0800 |
---|---|---|
committer | mormj <34754695+mormj@users.noreply.github.com> | 2021-05-24 08:02:04 -0400 |
commit | 6f5803963c56d454564ba2ee2e5f2607689b3c43 (patch) | |
tree | 96c97165a204de8f3feedc6bae23aeda5467e65c /grc/gui | |
parent | 5b82f925f4af11ba99d6c7e61dbef3fc3c0d33b3 (diff) |
grc: Fix vector length bug
Make all ports follow the `vlen` of their master port the same way it is
for `dtype`. Fixes #4634.
Signed-off-by: Solomon Tan <solomonbstoner@yahoo.com.au>
Diffstat (limited to 'grc/gui')
-rw-r--r-- | grc/gui/Application.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/gui/Application.py b/grc/gui/Application.py index 6b3fb804e5..a5ea248bcc 100644 --- a/grc/gui/Application.py +++ b/grc/gui/Application.py @@ -554,7 +554,7 @@ class Application(Gtk.Application): response = self.dialog.run() if response in (Gtk.ResponseType.APPLY, Gtk.ResponseType.ACCEPT): page.state_cache.save_new_state(flow_graph.export_data()) - ### Following line forces a complete update of io ports + ### Following line forces a complete update of io ports flow_graph_update() page.saved = False else: # restore the current state |