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-12-15 13:44:08 (GMT)
committer Manuel Quiñones <manuq@laptop.org>2012-12-15 14:43:27 (GMT)
commit40852091087ca2a263297a9988ce1ed69cc42df4 (patch)
tree7688386af73675ecddc327cc5c138b4b5a4ec906
parentaf7b783866fb92d715d128f777ba3ae802949f7e (diff)
Journal details view: fix buddies alignment - SL #4335
Gtk.Alignment xalign defaults to 0.5 so the widget that contains the buddies is centered. Follow up of commit 35c51f0d . Signed-off-by: Manuel Quiñones <manuq@laptop.org> Acked-by: Simon Schampijer <simon@laptop.org>
-rw-r--r--src/jarabe/journal/expandedentry.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/jarabe/journal/expandedentry.py b/src/jarabe/journal/expandedentry.py
index 88ba3d7..d2188c4 100644
--- a/src/jarabe/journal/expandedentry.py
+++ b/src/jarabe/journal/expandedentry.py
@@ -47,6 +47,7 @@ class Separator(Gtk.VBox):
class BuddyList(Gtk.Alignment):
def __init__(self, buddies):
Gtk.Alignment.__init__(self)
+ self.set(0, 0, 0, 0)
hbox = Gtk.HBox()
for buddy in buddies: