Ticket #4335: 0002-Journal-details-view-fix-buddies-alignment-SL-4335.patch

File 0002-Journal-details-view-fix-buddies-alignment-SL-4335.patch, 1.1 KB (added by manuq, 10 years ago)

Fix

  • src/jarabe/journal/expandedentry.py

    From c8703f5af8866e78c3c73d7038b368dafbb08682 Mon Sep 17 00:00:00 2001
    From: =?UTF-8?q?Manuel=20Qui=C3=B1ones?= <manuq@laptop.org>
    Date: Sat, 15 Dec 2012 10:44:08 -0300
    Subject: [PATCH shell 2/2] Journal details view: fix buddies alignment - SL
     #4335
    MIME-Version: 1.0
    Content-Type: text/plain; charset=UTF-8
    Content-Transfer-Encoding: 8bit
    Mail-Followup-To: <sugar-devel@lists.sugarlabs.org>
    
    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>
    ---
     src/jarabe/journal/expandedentry.py | 1 +
     1 file changed, 1 insertion(+)
    
    diff --git a/src/jarabe/journal/expandedentry.py b/src/jarabe/journal/expandedentry.py
    index 88ba3d7..d2188c4 100644
    a b class Separator(Gtk.VBox): 
    4747class BuddyList(Gtk.Alignment):
    4848    def __init__(self, buddies):
    4949        Gtk.Alignment.__init__(self)
     50        self.set(0, 0, 0, 0)
    5051
    5152        hbox = Gtk.HBox()
    5253        for buddy in buddies: