Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/toolbar.py
diff options
context:
space:
mode:
authorGary Martin <gary@garycmartin.com>2009-09-07 18:14:42 (GMT)
committer Gary Martin <gary@garycmartin.com>2009-09-07 18:14:42 (GMT)
commitfd531afc83eb2e34c183456564e0a4f05d533f51 (patch)
tree51d082bfd4084ab5df451d6f366cdae8f262a796 /toolbar.py
parentb930325adbfa9bc499e70612dfcee0e8e26189cf (diff)
Use paired previous-next buttons for search.
Diffstat (limited to 'toolbar.py')
-rw-r--r--toolbar.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/toolbar.py b/toolbar.py
index d91c64a..454ea09 100644
--- a/toolbar.py
+++ b/toolbar.py
@@ -105,13 +105,13 @@ class EditToolbar(gtk.Toolbar):
self._search_entry.add_clear_button();
self._add_widget(self._search_entry, expand=True)
- self._findprev = ToolButton('go-previous')
+ self._findprev = ToolButton('go-previous-paired')
self._findprev.set_tooltip(_('Find previous'))
self.insert(self._findprev, -1)
self._findprev.show()
self._findprev.connect('clicked', self._findprev_cb);
- self._findnext = ToolButton('go-next')
+ self._findnext = ToolButton('go-next-paired')
self._findnext.set_tooltip(_('Find next'))
self.insert(self._findnext, -1)
self._findnext.show()