Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/model/homeactivity.py
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <mpg@redhat.com>2007-10-13 22:25:53 (GMT)
committer Marco Pesenti Gritti <mpg@redhat.com>2007-10-13 22:25:53 (GMT)
commit29bc0a8a20366f0bcea3b8f41433b5135dc77776 (patch)
tree3e257557645442c51a1205bdc2217d0048928675 /shell/model/homeactivity.py
parente39232a6225b60480ecdaacb639fc81a3a796e06 (diff)
Fix native applications handling
Diffstat (limited to 'shell/model/homeactivity.py')
-rw-r--r--shell/model/homeactivity.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/shell/model/homeactivity.py b/shell/model/homeactivity.py
index 72b661b..7365271 100644
--- a/shell/model/homeactivity.py
+++ b/shell/model/homeactivity.py
@@ -96,14 +96,17 @@ class HomeActivity(gobject.GObject):
def get_title(self):
"""Retrieve the application's root window's suggested title"""
- return self._window.get_name()
+ if self._window:
+ return self._window.get_name()
+ else:
+ return ''
- def get_icon_name(self):
+ def get_icon_path(self):
"""Retrieve the activity's icon (file) name"""
if self._activity_info:
return self._activity_info.icon
else:
- return 'image-missing'
+ return None
def get_icon_color(self):
"""Retrieve the appropriate icon colour for this activity