Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/toolbar.py
diff options
context:
space:
mode:
authorMarc Maurer <uwog@uwog.net>2007-09-02 18:27:55 (GMT)
committer Marc Maurer <uwog@uwog.net>2007-09-02 18:27:55 (GMT)
commit208f51d07038cf633ca6e33c1dddfa545d99ae63 (patch)
tree1ca6f92cc3a0379d340ea74449a8e1e40551687b /toolbar.py
parent6a562362e2178fd79292a2d20460cffc7c41e617 (diff)
Add a Style label before the Style combobox
Diffstat (limited to 'toolbar.py')
-rw-r--r--toolbar.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/toolbar.py b/toolbar.py
index a06c1fd..f6791ca 100644
--- a/toolbar.py
+++ b/toolbar.py
@@ -334,6 +334,13 @@ class FormatToolbar(gtk.Toolbar):
self._toolbox = toolbox
self._abiword_canvas = abiword_canvas
+ style_label = gtk.Label(_("Style: "))
+ style_label.show()
+ tool_item_style_label = gtk.ToolItem()
+ tool_item_style_label.add(style_label)
+ self.insert(tool_item_style_label, -1)
+ tool_item_style_label.show()
+
self._style_combo = ComboBox()
self._styles = [['Heading 1',_('Heading 1')],
['Heading 2',_('Heading 2')],