Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Area.py
diff options
context:
space:
mode:
authorGonzalo Odiard <godiard@gmail.com>2012-07-23 21:41:25 (GMT)
committer Gonzalo Odiard <godiard@gmail.com>2012-08-10 13:49:29 (GMT)
commit5e008917dcb31ffeb49316240580fc4630fd8461 (patch)
treecb21ea2681aaf49865c23327153cd8617bd84e98 /Area.py
parentde7c55ce9e1c170aa8aeade84bfc30834a277e44 (diff)
Pep8 fixes
Diffstat (limited to 'Area.py')
-rw-r--r--Area.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Area.py b/Area.py
index a25d44b..4afc471 100644
--- a/Area.py
+++ b/Area.py
@@ -1344,14 +1344,14 @@ class Area(gtk.DrawingArea):
# Decide which is the cursor hot spot offset:
if self.tool['name'] == 'stamp':
- hotspot_x, hotspot_y = 20, 38 # horizontal
+ hotspot_x, hotspot_y = 20, 38 # horizontal
# center and
# bottom
elif self.tool['name'] == 'picker':
- hotspot_x, hotspot_y = 1, 38 # bottom left
+ hotspot_x, hotspot_y = 1, 38 # bottom left
# corner
else:
- hotspot_x, hotspot_y = 0, 0
+ hotspot_x, hotspot_y = 0, 0
cursor = gtk.gdk.Cursor(display, pixbuf, hotspot_x, hotspot_y)
except gobject.GError: