Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/toolbar.py
diff options
context:
space:
mode:
Diffstat (limited to 'toolbar.py')
-rw-r--r--toolbar.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/toolbar.py b/toolbar.py
index 44979e7..661d057 100644
--- a/toolbar.py
+++ b/toolbar.py
@@ -108,13 +108,13 @@ class TextToolbar(gtk.Toolbar):
self._alignment = ComboBox()
self._alignment.append_item(self._ACTION_ALIGNMENT_LEFT, None,
- 'theme:format-justify-left')
+ 'format-justify-left')
self._alignment.append_item(self._ACTION_ALIGNMENT_CENTER, None,
- 'theme:format-justify-center')
+ 'format-justify-center')
self._alignment.append_item(self._ACTION_ALIGNMENT_RIGHT, None,
- 'theme:format-justify-right')
+ 'format-justify-right')
self._alignment.append_item(self._ACTION_ALIGNMENT_JUSTIFY, None,
- 'theme:format-justify-fill')
+ 'format-justify-fill')
self._alignment_changed_id = \
self._alignment.connect('changed', self._alignment_changed_cb)
tool_item = ToolComboBox(self._alignment)