Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/webtoolbar.py
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2007-07-18 22:06:56 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2007-07-18 22:06:56 (GMT)
commit3f9cabf08e74f3500010ec67ba1163dc84a25ccf (patch)
treeb456f3bd64e66cc8958259c9d9ccc8d5c43587ff /webtoolbar.py
parent46a8e0d86e9ca22e6e1d1289f4560fa320afeeb3 (diff)
Fix stop button icon.
Diffstat (limited to 'webtoolbar.py')
-rwxr-xr-xwebtoolbar.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/webtoolbar.py b/webtoolbar.py
index df290a3..3a0b61b 100755
--- a/webtoolbar.py
+++ b/webtoolbar.py
@@ -50,7 +50,7 @@ class WebToolbar(gtk.Toolbar):
self.insert(self._forward, -1)
self._forward.show()
- self._stop_and_reload = ToolButton('stop')
+ self._stop_and_reload = ToolButton('media-playback-stop')
self._stop_and_reload.connect('clicked', self._stop_and_reload_cb)
self.insert(self._stop_and_reload, -1)
self._stop_and_reload.show()
@@ -107,7 +107,7 @@ class WebToolbar(gtk.Toolbar):
self._entry.props.title = title
def _show_stop_icon(self):
- self._stop_and_reload.set_icon('stop')
+ self._stop_and_reload.set_icon('media-playback-stop')
def _show_reload_icon(self):
self._stop_and_reload.set_icon('view-refresh')