Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomeu Vizoso <tomeu@tomeuvizoso.net>2007-02-27 21:35:28 (GMT)
committer Tomeu Vizoso <tomeu@tomeuvizoso.net>2007-02-27 21:35:28 (GMT)
commitf09a63930f6470c737f7c606116a5ce7f6265f63 (patch)
tree5993205383197dcac6df45a7fd864172583bbc47
parent8a9232234b654c8acfe6a415c1e7cb254647080b (diff)
Fix stroke/fill on ZoomBox icons.
-rw-r--r--shell/view/frame/ZoomBox.py17
-rw-r--r--sugar/graphics/button.py7
2 files changed, 17 insertions, 7 deletions
diff --git a/shell/view/frame/ZoomBox.py b/shell/view/frame/ZoomBox.py
index 2ba46b8..231f188 100644
--- a/shell/view/frame/ZoomBox.py
+++ b/shell/view/frame/ZoomBox.py
@@ -20,6 +20,7 @@ from gettext import gettext as _
import hippo
from sugar.graphics.menu import Menu, MenuItem
+from sugar.graphics import color
from sugar.graphics.iconbutton import IconButton
import sugar
@@ -79,19 +80,27 @@ class ZoomBox(hippo.CanvasBox):
self._popup_context = popup_context
self._activity_icon = None
- icon = IconButton(icon_name='theme:stock-zoom-mesh')
+ icon = IconButton(icon_name='theme:stock-zoom-mesh',
+ stroke_color=color.BLACK,
+ fill_color=color.WHITE)
icon.connect('activated', self._level_clicked_cb, sugar.ZOOM_MESH)
self.append(icon)
- icon = IconButton(icon_name='theme:stock-zoom-friends')
+ icon = IconButton(icon_name='theme:stock-zoom-friends',
+ stroke_color=color.BLACK,
+ fill_color=color.WHITE)
icon.connect('activated', self._level_clicked_cb, sugar.ZOOM_FRIENDS)
self.append(icon)
- icon = IconButton(icon_name='theme:stock-zoom-home')
+ icon = IconButton(icon_name='theme:stock-zoom-home',
+ stroke_color=color.BLACK,
+ fill_color=color.WHITE)
icon.connect('activated', self._level_clicked_cb, sugar.ZOOM_HOME)
self.append(icon)
- icon = IconButton(icon_name='theme:stock-zoom-activity')
+ icon = IconButton(icon_name='theme:stock-zoom-activity',
+ stroke_color=color.BLACK,
+ fill_color=color.WHITE)
icon.connect('activated', self._level_clicked_cb, sugar.ZOOM_ACTIVITY)
self.append(icon)
diff --git a/sugar/graphics/button.py b/sugar/graphics/button.py
index 4419327..7b487ae 100644
--- a/sugar/graphics/button.py
+++ b/sugar/graphics/button.py
@@ -47,7 +47,8 @@ class Button(hippo.CanvasBox, hippo.CanvasItem):
self._round_box.props.background_color = color.BLACK.get_int()
self._round_box.props.padding_top = units.points_to_pixels(1)
self._round_box.props.padding_bottom = units.points_to_pixels(1)
-
+ self._round_box.props.spacing = units.points_to_pixels(3)
+
self._text_box = hippo.CanvasText()
self._text_box.props.font_desc = font.DEFAULT.get_pango_desc()
self._text_box.props.color = color.BUTTON_NORMAL.get_int()
@@ -87,8 +88,8 @@ class Button(hippo.CanvasBox, hippo.CanvasItem):
else:
self._icon = CanvasIcon(icon_name=value,
scale=units.SMALL_ICON_SCALE,
- fill_color=color.WHITE,
- stroke_color=color.BLACK)
+ fill_color=color.BLACK,
+ stroke_color=color.WHITE)
# Insert icon on the label's left
self._round_box.remove_all()
self._round_box.append(self._icon)