Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorManuel QuiƱones <manuq@laptop.org>2012-07-04 22:30:06 (GMT)
committer Manuel QuiƱones <manuq@laptop.org>2012-07-05 14:43:05 (GMT)
commit6e0da0b3d079a6d2d8a40d248caad759c4beecdd (patch)
treebe1e6640b9d3652e1d2da35740a6afd303fac0f8
parent9f6070b4e2acbbcb7e8f430179c5b46375b43f2d (diff)
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.
-rw-r--r--src/jarabe/desktop/meshbox.py2
1 files changed, 1 insertions, 1 deletions
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()