Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2006-08-19 11:39:13 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2006-08-19 11:39:13 (GMT)
commit32a368bdbb5dc9ce0de9adb5a1b120b39044dd77 (patch)
treeddad7b752a46633a5de71c2e038e403b86832f41 /shell
parentfd20af1431b9f3b23128f80347f139c1816f18ce (diff)
Adapt to the new artwork stylesheets
Diffstat (limited to 'shell')
-rw-r--r--shell/home/HomeView.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/shell/home/HomeView.py b/shell/home/HomeView.py
index 09627b6..6424e6e 100644
--- a/shell/home/HomeView.py
+++ b/shell/home/HomeView.py
@@ -100,6 +100,11 @@ class Model(goocanvas.CanvasModelSimple):
tasks.translate(600, 450)
root.add_child(tasks)
+ me = IconItem('stock-buddy', 'green', 150)
+ me.translate(600 - (me.get_property('width') / 2),
+ 450 - (me.get_property('height') / 2))
+ root.add_child(me)
+
class HomeView(goocanvas.CanvasView):
def __init__(self, shell):
goocanvas.CanvasView.__init__(self)