Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Francis <francis@sugarlabs.org>2012-11-28 15:34:29 (GMT)
committer Daniel Francis <francis@sugarlabs.org>2012-11-28 15:34:29 (GMT)
commit6879f4c7c9ff1b73f4d0ffa1f8936f89a51e5b36 (patch)
tree98b1f1136cf8f9064c4e61d7ed5d53173a01afef
parent0b28a34491d693df8510f2d020aec11d0bc6102f (diff)
Add border to HelpButton
Also added people who contributed maintaining that file to the Copyright note. Signed-off-by: Manuel Kaufmann <humitos@gmail.com> Acked-by: Daniel Francis <francis@sugarlabs.org>
-rw-r--r--helpbutton.py12
1 files changed, 8 insertions, 4 deletions
diff --git a/helpbutton.py b/helpbutton.py
index 3a4c286..f3845f7 100644
--- a/helpbutton.py
+++ b/helpbutton.py
@@ -1,7 +1,10 @@
-#!/usr/bin/env python
-# -*- coding: utf-8 -*-
-# Copyright (C) 2012, Gonzalo Odiard <godiard@gmail.com>
-
+# Main author:
+# Copyright (C) 2012, Gonzalo Odiard <godiard@laptop.org>
+# Minor changes and maintaining tasks:
+# Copyright (C) 2012, Agustin Zubiaga <aguz@sugarlabs.org>
+# Copyright (C) 2012, Daniel Francis <francis@sugarlabs.org>
+# Copyright (C) 2012, Manuel Kaufmann <humitos@gmail.com>
+#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
@@ -49,6 +52,7 @@ class HelpButton(Gtk.ToolItem):
self._vbox = Gtk.Box()
self._vbox.set_orientation(Gtk.Orientation.VERTICAL)
self._vbox.set_homogeneous(False)
+ self._vbox.set_border_width(10)
hbox = Gtk.Box()
hbox.pack_start(self._vbox, False, True, 0)