Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/view/home/activitiesdonut.py
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <mpg@redhat.com>2007-01-19 14:47:33 (GMT)
committer Marco Pesenti Gritti <mpg@redhat.com>2007-01-19 14:47:33 (GMT)
commit5ca728b1d31139f059a3b3c94610db65d17e9c57 (patch)
tree7aed32fad54fb14d046a88b775b76e63d239bf8a /shell/view/home/activitiesdonut.py
parent3bedd451e3e1e60c92fe4d888fcd2f2f43f7f50b (diff)
Fix API for hippo-canvas 0.2
Diffstat (limited to 'shell/view/home/activitiesdonut.py')
-rw-r--r--shell/view/home/activitiesdonut.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/shell/view/home/activitiesdonut.py b/shell/view/home/activitiesdonut.py
index c9d8664..75d0b4d 100644
--- a/shell/view/home/activitiesdonut.py
+++ b/shell/view/home/activitiesdonut.py
@@ -221,8 +221,8 @@ class ActivitiesDonut(hippo.CanvasBox, hippo.CanvasItem):
cr.arc(0, 0, self._get_inner_radius(), 0, 2 * math.pi)
cr.fill()
- def do_allocate(self, width, height):
- hippo.CanvasBox.do_allocate(self, width, height)
+ def do_allocate(self, width, height, origin_changed):
+ hippo.CanvasBox.do_allocate(self, width, height, origin_changed)
radius = (self._get_inner_radius() + self._get_radius()) / 2
@@ -235,6 +235,6 @@ class ActivitiesDonut(hippo.CanvasBox, hippo.CanvasItem):
x = int(radius * math.cos(angle)) - icon_width / 2
y = int(radius * math.sin(angle)) - icon_height / 2
- self.move(icon, x + width / 2, y + height / 2)
+ self.set_position(icon, x + width / 2, y + height / 2)
i += 1