Fix up dimensions

This commit is contained in:
Marco Pesenti Gritti 2006-09-09 02:05:00 +02:00
parent 5fc7e1137d
commit 695fb7e1c5
2 changed files with 3 additions and 3 deletions

View File

@ -34,11 +34,11 @@ class HomeWindow(gtk.Window):
self._current_group = self._home_group
def set_owner(self, owner):
layout = IconLayout(1900, 1200)
layout = IconLayout(1200, 900)
friends = owner.get_friends()
self._friends_group = FriendsGroup(self._shell, friends, layout)
layout = IconLayout(1900, 1200)
layout = IconLayout(1200, 900)
self._mesh_group = MeshGroup(self._shell, layout)
def _set_group(self, group):

View File

@ -12,7 +12,7 @@ class ActivityItem(IconItem):
self._service = service
IconItem.__init__(self, icon_name=self.get_icon_name(),
color=self.get_color(), size=144)
color=self.get_color(), size=96)
def get_id(self):
return self._service.get_activity_id()