From 6e0da0b3d079a6d2d8a40d248caad759c4beecdd Mon Sep 17 00:00:00 2001 From: Manuel QuiƱones Date: Wed, 04 Jul 2012 22:30:06 +0000 Subject: Fix the remote buddy icons in the mesh view I don't see a reason to make the remote buddy icons 1 pixel smaller than the user one, this was added in 12a00d3f5a6b8fa929574c27d4757a3e1d48feef . Also, was giving error because the keyword parameter changed from size to pixel_size. --- diff --git a/src/jarabe/desktop/meshbox.py b/src/jarabe/desktop/meshbox.py index d3ef459..3ed8584 100644 --- a/src/jarabe/desktop/meshbox.py +++ b/src/jarabe/desktop/meshbox.py @@ -485,7 +485,7 @@ class MeshBox(gtk.VBox): return if buddy_model.is_owner(): return - icon = BuddyIcon(buddy_model, size=style.STANDARD_ICON_SIZE & ~1) + icon = BuddyIcon(buddy_model) self._mesh_container.add(icon) icon.show() -- cgit v0.9.1