diff options
author | Sebastian Koslowski <koslowski@kit.edu> | 2016-07-05 17:17:54 +0200 |
---|---|---|
committer | Sebastian Koslowski <koslowski@kit.edu> | 2016-07-13 16:35:49 +0200 |
commit | 74e7af6cd0eb5e2f3892b42f08b0089ed2f2fec0 (patch) | |
tree | 9e0b9f268a4e43ce768ce33298912c54e04429a0 /grc/gui/FlowGraph.py | |
parent | 43181eeca5a6d0fee7089681f90d5cc7a4235019 (diff) |
grc: gtk3: enable block comments
Diffstat (limited to 'grc/gui/FlowGraph.py')
-rw-r--r-- | grc/gui/FlowGraph.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/grc/gui/FlowGraph.py b/grc/gui/FlowGraph.py index f6a57ef367..77615f13b0 100644 --- a/grc/gui/FlowGraph.py +++ b/grc/gui/FlowGraph.py @@ -408,8 +408,7 @@ class FlowGraph(Element, _Flowgraph): if Actions.TOGGLE_SHOW_BLOCK_COMMENTS.get_active(): for block in self.blocks: if block.get_enabled(): - # block.draw_comment(widget, cr) - pass + block.draw_comment(widget, cr) # draw multi select rectangle if self.mouse_pressed and (not self.get_selected_elements() or self.get_ctrl_mask()): x1, y1 = self.press_coor |