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 <mpg@redhat.com>2007-10-18 18:44:59 (GMT)
committer Marco Pesenti Gritti <mpg@redhat.com>2007-10-18 18:44:59 (GMT)
commitdb83d0be77bac8f2c99683a3564079fadaf88670 (patch)
treeb3bc18c6b7ed420822549536d9a655a7bf2e9cae /webtoolbar.py
parent4501e8b69e8bbd6aaaa7eb6762ca77d3c770942c (diff)
Fix icon names
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 104c439..29ac855 100755
--- a/webtoolbar.py
+++ b/webtoolbar.py
@@ -50,14 +50,14 @@ class WebToolbar(gtk.Toolbar):
self._browser = browser
- self._back = ToolButton('go-previous')
+ self._back = ToolButton('go-previous-paired')
self._back.set_tooltip(_('Back'))
self._back.props.sensitive = False
self._back.connect('clicked', self._go_back_cb)
self.insert(self._back, -1)
self._back.show()
- self._forward = ToolButton('go-next')
+ self._forward = ToolButton('go-next-paired')
self._forward.set_tooltip(_('Forward'))
self._forward.props.sensitive = False
self._forward.connect('clicked', self._go_forward_cb)