Ticket #4196: 0001-Left-padding-on-help-palette-SL-4196.patch

File 0001-Left-padding-on-help-palette-SL-4196.patch, 793 bytes (added by humitos, 11 years ago)

Patch for "origin/gtk3" branch

  • helpbutton.py

    From b2867ec2d3c9b993ff649d868771dbebcfe83270 Mon Sep 17 00:00:00 2001
    From: Manuel Kaufmann <humitos@gmail.com>
    Date: Wed, 28 Nov 2012 11:47:43 -0300
    Subject: [PATCH Terminal] Left padding on help palette SL #4196
    
    Add 10px for left padding on the palette.
    
    Signed-off-by: Manuel Kaufmann <humitos@gmail.com>
    ---
     helpbutton.py | 1 +
     1 file changed, 1 insertion(+)
    
    diff --git a/helpbutton.py b/helpbutton.py
    index 3a4c286..f6a7d50 100644
    a b class HelpButton(Gtk.ToolItem): 
    4747
    4848        self._max_text_width = int(Gdk.Screen.width() / 3) - 600
    4949        self._vbox = Gtk.Box()
     50        self._vbox.set_border_width(10)
    5051        self._vbox.set_orientation(Gtk.Orientation.VERTICAL)
    5152        self._vbox.set_homogeneous(False)
    5253