diff options
author | Sebastian Koslowski <koslowski@kit.edu> | 2016-08-30 16:26:13 +0200 |
---|---|---|
committer | Sebastian Koslowski <koslowski@kit.edu> | 2016-08-30 16:26:13 +0200 |
commit | f85df8b8d9bf2a88a6b87b91d0b55fdcb8161f46 (patch) | |
tree | f957d37f92a3d7d3bd478cdec5c36f824054a17e /grc/gui/Element.py | |
parent | 63beff38d49cda141ccfebaee597a7edb7ac015d (diff) |
grc: gtk3: minor gui flowgraph cleanup
Diffstat (limited to 'grc/gui/Element.py')
-rw-r--r-- | grc/gui/Element.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/gui/Element.py b/grc/gui/Element.py index 81a5cbfc40..8418bef0cc 100644 --- a/grc/gui/Element.py +++ b/grc/gui/Element.py @@ -108,7 +108,7 @@ class Element(object): Call this base method before creating shapes in the element. """ - def draw(self, widget, cr): + def draw(self, cr): raise NotImplementedError() def bounds_from_area(self, area): |