Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/webtoolbar.py
diff options
context:
space:
mode:
authorManuel Quiñones <manuq@laptop.org>2013-01-15 11:22:36 (GMT)
committer Manuel Quiñones <manuq@laptop.org>2013-01-15 13:36:36 (GMT)
commitf95ed83c3eea358383ffe6052d6bb74422937c7e (patch)
treea57ef7da23275e550e7cca042cc0793232ffe870 /webtoolbar.py
parent79840bc5d1a240620d088a99607505e464957049 (diff)
Adapt to icon changes - SL #3569
- The stop and refresh icons were moved to Sugar Artwork, so can be removed. They have also been renamed, so change the code accordingly. - The system-search has been renamed to entry-search in Sugar Artwork. Signed-off-by: Manuel Quiñones <manuq@laptop.org> Acked-by: Simon Schampijer <simon@laptop.org>
Diffstat (limited to 'webtoolbar.py')
-rw-r--r--webtoolbar.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/webtoolbar.py b/webtoolbar.py
index dc0b3de..19f2b21 100644
--- a/webtoolbar.py
+++ b/webtoolbar.py
@@ -278,7 +278,7 @@ class PrimaryToolbar(ToolbarBase):
self.entry = WebEntry()
self.entry.set_icon_from_name(iconentry.ICON_ENTRY_SECONDARY,
- 'browse-dialog-cancel')
+ 'entry-stop')
self.entry.connect('icon-press', self._stop_and_reload_cb)
self.entry.connect('activate', self._entry_activate_cb)
self.entry.connect('focus-in-event', self.__focus_in_event_cb)
@@ -436,11 +436,11 @@ class PrimaryToolbar(ToolbarBase):
def _show_stop_icon(self):
self.entry.set_icon_from_name(iconentry.ICON_ENTRY_SECONDARY,
- 'browse-dialog-cancel')
+ 'entry-stop')
def _show_reload_icon(self):
self.entry.set_icon_from_name(iconentry.ICON_ENTRY_SECONDARY,
- 'browse-view-refresh')
+ 'entry-refresh')
def _update_navigation_buttons(self):
can_go_back = self._browser.can_go_back()