diff --git a/shell/view/BuddyIcon.py b/shell/view/BuddyIcon.py index 607dec65..05aaa841 100644 --- a/shell/view/BuddyIcon.py +++ b/shell/view/BuddyIcon.py @@ -4,7 +4,7 @@ from view.BuddyMenu import BuddyMenu class BuddyIcon(MenuIcon): def __init__(self, shell, menu_shell, friend): MenuIcon.__init__(self, menu_shell, icon_name='stock-buddy', - color=friend.get_color(), size=96) + color=friend.get_color(), size=112) self._shell = shell self._friend = friend diff --git a/shell/view/home/FriendsGroup.py b/shell/view/home/FriendsGroup.py index bac8cff6..1c2ea3a8 100644 --- a/shell/view/home/FriendsGroup.py +++ b/shell/view/home/FriendsGroup.py @@ -15,7 +15,7 @@ class FriendsGroup(goocanvas.Group): self._icon_layout = IconLayout(1200, 900) self._friends = {} - me = MyIcon(100) + me = MyIcon(112) me.translate(600 - (me.get_property('size') / 2), 450 - (me.get_property('size') / 2)) self.add_child(me) diff --git a/shell/view/home/MeshGroup.py b/shell/view/home/MeshGroup.py index 61118238..4578a010 100644 --- a/shell/view/home/MeshGroup.py +++ b/shell/view/home/MeshGroup.py @@ -14,7 +14,7 @@ class ActivityItem(IconItem): self._activity = activity IconItem.__init__(self, icon_name=self.get_icon_name(), - color=self.get_color(), size=96) + color=self.get_color(), size=112) def get_id(self): return self._activity.get_id()