diff options
author | Sebastian Koslowski <koslowski@kit.edu> | 2016-10-12 15:17:09 +0200 |
---|---|---|
committer | Sebastian Koslowski <koslowski@kit.edu> | 2016-10-21 09:29:38 +0200 |
commit | ea3eaa5f930062fa57568c6132a5930b7399f5f7 (patch) | |
tree | 2225a7ad738151b365f06848b488515dcb0bc3a3 /grc/gui/FlowGraph.py | |
parent | 1624da7772f1ff57232e2f2024281547d483629c (diff) |
grc: respect display scaling for block positions, canvas size and props dialog
Diffstat (limited to 'grc/gui/FlowGraph.py')
-rw-r--r-- | grc/gui/FlowGraph.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/gui/FlowGraph.py b/grc/gui/FlowGraph.py index f98aec41d5..5bcf018120 100644 --- a/grc/gui/FlowGraph.py +++ b/grc/gui/FlowGraph.py @@ -407,7 +407,7 @@ class FlowGraph(Element, _Flowgraph): Draw the pixmap to the drawable window of this flow graph. """ - W,H = self.get_size() + W, H = self.get_size() hide_disabled_blocks = Actions.TOGGLE_HIDE_DISABLED_BLOCKS.get_active() hide_variables = Actions.TOGGLE_HIDE_VARIABLES.get_active() |