diff options
author | Sebastian Koslowski <sebastian.koslowski@gmail.com> | 2017-04-21 21:19:31 +0200 |
---|---|---|
committer | Sebastian Koslowski <sebastian.koslowski@gmail.com> | 2017-08-30 20:19:27 +0200 |
commit | 4e23a380033ff4a092ef9ae1d13dec30e1cc3ccf (patch) | |
tree | e37e35d0e607db0936e1f79c8c7f95a8107afcd2 | |
parent | b014fb6e26d9a363870b477dccc9dfafd890eac0 (diff) |
grc: gtk3: fix #1290
-rw-r--r-- | grc/gui/Utils.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/grc/gui/Utils.py b/grc/gui/Utils.py index 969f3759f2..f47c2e6b97 100644 --- a/grc/gui/Utils.py +++ b/grc/gui/Utils.py @@ -141,6 +141,9 @@ def make_screenshot(flow_graph, file_path, transparent_bg=False): cr.fill() cr.translate(padding - x_min, padding - y_min) + + flow_graph.create_labels(cr) + flow_graph.create_shapes() flow_graph.draw(cr) if file_path.endswith('.png'): |