summaryrefslogtreecommitdiff
path: root/grc/gui/Utils.py
diff options
context:
space:
mode:
authorJohnathan Corgan <johnathan@corganlabs.com>2016-10-25 14:09:14 -0700
committerJohnathan Corgan <johnathan@corganlabs.com>2016-10-25 14:09:14 -0700
commit8d5e4f6df72b3b3bff601409310678d9c58e78be (patch)
tree2605a5ef011ccac1374ae9496e1bf02329411879 /grc/gui/Utils.py
parentbe6aaf488da426d864a9d1d04b22627a12ff0c4e (diff)
parent66df227f72156ddbc3f8b9321ff507a4e8a91523 (diff)
Merge branch 'master' into next
Diffstat (limited to 'grc/gui/Utils.py')
-rw-r--r--grc/gui/Utils.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/grc/gui/Utils.py b/grc/gui/Utils.py
index 7d15d47142..51b9b19e9f 100644
--- a/grc/gui/Utils.py
+++ b/grc/gui/Utils.py
@@ -24,7 +24,7 @@ import gobject
from Cheetah.Template import Template
-from Constants import POSSIBLE_ROTATIONS, CANVAS_GRID_SIZE, DPI_SCALING
+from Constants import POSSIBLE_ROTATIONS, CANVAS_GRID_SIZE
def rotate_pixmap(gc, src_pixmap, dst_pixmap, angle=gtk.gdk.PIXBUF_ROTATE_COUNTERCLOCKWISE):
@@ -131,8 +131,3 @@ def align_to_grid(coor, mode=round):
except TypeError:
x = coor
return align(coor)
-
-
-def scale(coor, reverse=False):
- factor = DPI_SCALING if not reverse else 1 / DPI_SCALING
- return tuple(int(x * factor) for x in coor)