Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2007-07-14 08:29:45 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2007-07-14 08:29:45 (GMT)
commitfcb888b74c0a9202a119463550ade9b9026a71b3 (patch)
treecabc04f18fe70ce1b4dbabcc18316ed890a74151 /shell
parent2cf15ff1f87482882c98fcb618c59e9f8eedb34e (diff)
Arrow icons in the intro screen buttons.
Diffstat (limited to 'shell')
-rw-r--r--shell/intro/intro.py11
1 files changed, 6 insertions, 5 deletions
diff --git a/shell/intro/intro.py b/shell/intro/intro.py
index aac8845..37b0ea1 100644
--- a/shell/intro/intro.py
+++ b/shell/intro/intro.py
@@ -26,6 +26,7 @@ import logging
from sugar import env
from sugar.graphics import style
+from sugar.graphics.canvasbutton import CanvasButton
from sugar.graphics.canvasentry import CanvasEntry
import colorpicker
@@ -130,7 +131,7 @@ class _IntroBox(hippo.CanvasBox):
button_box = hippo.CanvasBox(orientation=hippo.ORIENTATION_HORIZONTAL)
if self._page != self.PAGE_FIRST:
- back_button = hippo.CanvasButton(text=_('Back'))
+ back_button = CanvasButton(_('Back'), 'go-left')
back_button.connect('activated', self._back_activated_cb)
button_box.append(back_button)
@@ -138,15 +139,15 @@ class _IntroBox(hippo.CanvasBox):
button_box.append(spacer, hippo.PACK_EXPAND)
if self._page == self.PAGE_LAST:
- self._next_button = hippo.CanvasButton(text=_('Done'))
+ self._next_button = CanvasButton(_('Done'), 'go-right')
self._next_button.connect('activated', self._done_activated_cb)
- button_box.append(self._next_button)
else:
- self._next_button = hippo.CanvasButton(text=_('Next'))
+ self._next_button = CanvasButton(_('Next'), 'go-right')
self._next_button.connect('activated', self._next_activated_cb)
- button_box.append(self._next_button)
self._update_next_button()
+ button_box.append(self._next_button)
+
self._current_page.connect('notify::valid',
self._page_valid_changed_cb)