Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/widgets.py
diff options
context:
space:
mode:
authorGonzalo Odiard <godiard@gmail.com>2012-11-21 21:23:01 (GMT)
committer Gonzalo Odiard <godiard@gmail.com>2012-11-21 21:23:01 (GMT)
commitd000b7943d0b654330771c346204b7edb363bb8f (patch)
treed0e197e0c27510827554a0316d8bf48a8fa861cb /widgets.py
parente978cd3bfc3957dce50589b1b8d48fa7b0b3c658 (diff)
Fix padding in color palettes
Signed-off-by: Gonzalo Odiard <gonzalo@laptop.org>
Diffstat (limited to 'widgets.py')
-rw-r--r--widgets.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/widgets.py b/widgets.py
index a1905b0..70cc6a3 100644
--- a/widgets.py
+++ b/widgets.py
@@ -293,7 +293,8 @@ class ButtonStrokeColor(Gtk.ToolItem):
color_palette_hbox.pack_start(Gtk.VSeparator(), True, True,
padding=style.DEFAULT_SPACING)
- color_palette_hbox.pack_start(content_box, True, True, 10)
+ color_palette_hbox.pack_start(content_box, True, True,
+ padding=style.DEFAULT_SPACING)
color_palette_hbox.show_all()
self._update_palette()
return self._palette