diff options
author | Sebastian Koslowski <koslowski@kit.edu> | 2016-06-09 14:45:24 +0200 |
---|---|---|
committer | Sebastian Koslowski <koslowski@kit.edu> | 2016-06-10 14:42:14 +0200 |
commit | 7ac7cf6246e4d984d36c64df10ba4d2b2f6b2204 (patch) | |
tree | de6a780c3fe791087f53913883bba6efa6040e51 /grc/core/Port.py | |
parent | 435e2b16c903b4a9d16d40ffba649698c4ded190 (diff) |
grc: gtk3: fix paste and domain color settings
Diffstat (limited to 'grc/core/Port.py')
-rw-r--r-- | grc/core/Port.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/core/Port.py b/grc/core/Port.py index 99b5a25508..9a33c5c506 100644 --- a/grc/core/Port.py +++ b/grc/core/Port.py @@ -128,7 +128,7 @@ class Port(Element): n.setdefault('key', str(next(block.port_counters[dir == 'source']))) # Build the port - Element.__init__(self, block) + Element.__init__(self, parent=block) # Grab the data self._name = n['name'] self._key = n['key'] |