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/Param.py | |
parent | 435e2b16c903b4a9d16d40ffba649698c4ded190 (diff) |
grc: gtk3: fix paste and domain color settings
Diffstat (limited to 'grc/core/Param.py')
-rw-r--r-- | grc/core/Param.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/core/Param.py b/grc/core/Param.py index b21cbcddf1..35bb176744 100644 --- a/grc/core/Param.py +++ b/grc/core/Param.py @@ -172,7 +172,7 @@ class Param(Element): if self._tab_label not in block.get_param_tab_labels(): block.get_param_tab_labels().append(self._tab_label) # Build the param - Element.__init__(self, block) + Element.__init__(self, parent=block) # Create the Option objects from the n data self._options = list() self._evaluated = None |