Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Maurer <uwog@uwog.net>2007-09-02 18:35:26 (GMT)
committer Marc Maurer <uwog@uwog.net>2007-09-02 18:35:26 (GMT)
commit6ff4e6cb774f57be452c0c1ee40ce85737816dc8 (patch)
tree777f40860397159424c44f36ed71a7e1077c3812
parent208f51d07038cf633ca6e33c1dddfa545d99ae63 (diff)
Don't forget to actually show the separators in the Text toolbar
-rw-r--r--NEWS1
-rw-r--r--toolbar.py1
2 files changed, 2 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 7cfe443..aa47b8f 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,4 @@
+* Don't forget to actually show the separators in the Text toolbar (uwog)
* Add a Style label before the Style combobox (uwog)
* Hook up the abiword canvas font size signal to the Write toolbar (uwog)
diff --git a/toolbar.py b/toolbar.py
index f6791ca..c6f8a44 100644
--- a/toolbar.py
+++ b/toolbar.py
@@ -78,6 +78,7 @@ class TextToolbar(gtk.Toolbar):
separator = gtk.SeparatorToolItem()
separator.set_draw(True)
+ separator.show()
self.insert(separator, -1)
self._font_size_combo = ComboBox()