Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/toolbar.py
diff options
context:
space:
mode:
authorTomeu Vizoso <tomeu@tomeuvizoso.net>2007-07-03 15:51:30 (GMT)
committer Tomeu Vizoso <tomeu@tomeuvizoso.net>2007-07-03 15:51:30 (GMT)
commitdd142d42d75988f67859ce7f79140df27d0eb19b (patch)
treeb4d04a3e2a2a5da7f4eef9ff6f747f6c21f22e9e /toolbar.py
parentdea1e7f00d97d1d385c144f683a82a7597fe05f0 (diff)
Adapt to combobox API change.
Diffstat (limited to 'toolbar.py')
-rw-r--r--toolbar.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/toolbar.py b/toolbar.py
index a62c423..76179db 100644
--- a/toolbar.py
+++ b/toolbar.py
@@ -99,11 +99,11 @@ class TextToolbar(gtk.Toolbar):
self._alignment = ComboBox()
self._alignment.append_item(self._ACTION_ALIGNMENT_LEFT, None,
- 'format-justify-left')
+ 'theme:format-justify-left')
self._alignment.append_item(self._ACTION_ALIGNMENT_CENTER, None,
- 'format-justify-center')
+ 'theme:format-justify-center')
self._alignment.append_item(self._ACTION_ALIGNMENT_RIGHT, None,
- 'format-justify-right')
+ 'theme:format-justify-right')
self._alignment_changed_id = self._alignment.connect('changed',
self._alignment_changed_cb)
self._add_widget(self._alignment)