diff options
author | Sebastian Koslowski <koslowski@kit.edu> | 2016-07-19 14:53:03 +0200 |
---|---|---|
committer | Sebastian Koslowski <koslowski@kit.edu> | 2016-07-19 14:53:03 +0200 |
commit | e9dae9194c5abc5582f640f4d5a66794dcdeb8ca (patch) | |
tree | 46a4bb3434302adefb935c6593ec35bb62d753e2 | |
parent | dccb7826806cec6566b565be2650549879f953e1 (diff) |
grc: fix block init
-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 8d0c65c37a..c5a9f063a3 100644 --- a/grc/gui/Block.py +++ b/grc/gui/Block.py @@ -41,7 +41,7 @@ class Block(CoreBlock, Element): Block constructor. Add graphics related params to the block. """ - _Block.__init__(self, flow_graph, n) + CoreBlock.__init__(self, flow_graph, n) self.states.update(_coordinate=(0, 0), _rotation=0) self.width = self.height = 0 |