Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar/graphics/grid.py
diff options
context:
space:
mode:
Diffstat (limited to 'sugar/graphics/grid.py')
-rw-r--r--sugar/graphics/grid.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sugar/graphics/grid.py b/sugar/graphics/grid.py
index be44f43..8ee124a 100644
--- a/sugar/graphics/grid.py
+++ b/sugar/graphics/grid.py
@@ -7,7 +7,7 @@ class Grid(object):
def __init__(self):
self._factor = gtk.gdk.screen_width() / COLS
- def position(self, x, y):
+ def point(self, x, y):
return [x * self._factor, y * self._factor]
def rectangle(self, x, y, width, height):