diff options
Diffstat (limited to 'grc/gui/Block.py')
-rw-r--r-- | grc/gui/Block.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/gui/Block.py b/grc/gui/Block.py index 616396c747..e7dc03345b 100644 --- a/grc/gui/Block.py +++ b/grc/gui/Block.py @@ -214,7 +214,7 @@ class Block(CoreBlock, Element): max_width = 0 for port in ports: port.create_labels() - max_width = max(max_width, port.width) + max_width = max(max_width, port.width_with_label) for port in ports: port.width = max_width |