Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/home/HomeView.py
diff options
context:
space:
mode:
Diffstat (limited to 'shell/home/HomeView.py')
-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)