Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--viewtoolbar.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/viewtoolbar.py b/viewtoolbar.py
index 48f1d93..0c3a8d7 100644
--- a/viewtoolbar.py
+++ b/viewtoolbar.py
@@ -30,18 +30,18 @@ class ViewToolbar(gtk.Toolbar):
self._browser = self._activity._browser
- self.zoomin = ToolButton('zoom-in')
- self.zoomin.set_tooltip(_('Zoom in'))
- self.zoomin.connect('clicked', self.__zoomin_clicked_cb)
- self.insert(self.zoomin, -1)
- self.zoomin.show()
-
self.zoomout = ToolButton('zoom-out')
self.zoomout.set_tooltip(_('Zoom out'))
self.zoomout.connect('clicked', self.__zoomout_clicked_cb)
self.insert(self.zoomout, -1)
self.zoomout.show()
+ self.zoomin = ToolButton('zoom-in')
+ self.zoomin.set_tooltip(_('Zoom in'))
+ self.zoomin.connect('clicked', self.__zoomin_clicked_cb)
+ self.insert(self.zoomin, -1)
+ self.zoomin.show()
+
self.separator = gtk.SeparatorToolItem()
self.separator.set_draw(True)
self.insert(self.separator, -1)