Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAgustin Zubiaga <aguz@sugarlabs.org>2012-10-17 13:22:08 (GMT)
committer Agustin Zubiaga <aguz@sugarlabs.org>2012-10-17 13:22:08 (GMT)
commit3d91f962891d7ebe01a0022ebb818459f1284eea (patch)
tree094515ba4d177b89f25e2ade03ca2ae68a21e045
parent23a533874a5e6357d3b4b593cc72066566b6d9a4 (diff)
Move the helpbutton before the fill separator
Signed-off-by: Agustin Zubiaga <aguz@sugarlabs.org>
-rw-r--r--terminal.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/terminal.py b/terminal.py
index 4245874..6a3cfef 100644
--- a/terminal.py
+++ b/terminal.py
@@ -94,16 +94,16 @@ class TerminalActivity(activity.Activity):
self._previous_tab_toolbar = None
self._next_tab_toolbar = None
+ helpbutton = self._create_help_button()
+ toolbar_box.toolbar.insert(helpbutton, -1)
+ helpbutton.show_all()
+
separator = Gtk.SeparatorToolItem()
separator.props.draw = False
separator.set_expand(True)
toolbar_box.toolbar.insert(separator, -1)
separator.show()
- helpbutton = self._create_help_button()
- toolbar_box.toolbar.insert(helpbutton, -1)
- helpbutton.show_all()
-
stop_button = StopButton(self)
stop_button.props.accelerator = '<Ctrl><Shift>Q'
toolbar_box.toolbar.insert(stop_button, -1)