Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAneesh Dogra <lionaneesh@gmail.com>2012-12-20 21:30:38 (GMT)
committer Aneesh Dogra <lionaneesh@gmail.com>2012-12-20 21:30:38 (GMT)
commite46103e63772d775f53c52bd6657d0bb0c04abf6 (patch)
tree0922ee015249f755b30b1e44cd13f41e0d3f9399
parentbe5a78c361d70ff910654d871780684d6f145219 (diff)
Add separator before the Stop button.
-rwxr-xr-xConstellationsFlashCards.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/ConstellationsFlashCards.py b/ConstellationsFlashCards.py
index d4ed97e..5c8d481 100755
--- a/ConstellationsFlashCards.py
+++ b/ConstellationsFlashCards.py
@@ -764,6 +764,10 @@ class ConstellationsFlashCards(activity.Activity):
toolbar_box.toolbar.insert(about_toolbar_button, -1)
about_toolbar_button.show()
+ separator = Gtk.SeparatorToolItem()
+ toolbar_box.toolbar.insert(separator, -1)
+ separator.show()
+
# The stop button
stop_button = StopButton(self)
stop_button.props.accelerator = '<Ctrl><Shift>Q'