summaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorPeng Huang <phuang@phuang.nay.redhat.com>2009-02-12 11:26:04 +0800
committerPeng Huang <phuang@phuang.nay.redhat.com>2009-02-12 11:26:04 +0800
commitdcd4ceb33c2865ef3636565c68d97ee05ea6b1e3 (patch)
tree975be031f2124728c42192961d79c2171dbbdeb8 /ui
parentff57aab1e19c7f89ebb6b924165f5c6ced2a2201 (diff)
downloadibus-dcd4ceb33c2865ef3636565c68d97ee05ea6b1e3.tar.gz
ibus-dcd4ceb33c2865ef3636565c68d97ee05ea6b1e3.tar.xz
ibus-dcd4ceb33c2865ef3636565c68d97ee05ea6b1e3.zip
Use label.text instead of lable to fix problem.
Diffstat (limited to 'ui')
-rw-r--r--ui/gtk/menu.py4
-rw-r--r--ui/gtk/panel.py4
-rw-r--r--ui/gtk/toolitem.py2
3 files changed, 4 insertions, 6 deletions
diff --git a/ui/gtk/menu.py b/ui/gtk/menu.py
index 9a3b30a..6f6c7d1 100644
--- a/ui/gtk/menu.py
+++ b/ui/gtk/menu.py
@@ -92,7 +92,7 @@ class ImageMenuItem (gtk.ImageMenuItem, PropItem):
}
def __init__ (self, prop):
- gtk.ImageMenuItem.__init__ (self, label = prop.label)
+ gtk.ImageMenuItem.__init__ (self, label = prop.label.text)
PropItem.__init__ (self, prop)
if self._prop.icon:
@@ -128,7 +128,7 @@ class CheckMenuItem (gtk.CheckMenuItem, PropItem):
}
def __init__ (self, prop):
- gtk.CheckMenuItem.__init__ (self, label = prop.label)
+ gtk.CheckMenuItem.__init__ (self, label = prop.label.text)
PropItem.__init__ (self, prop)
self.set_active (self._prop._state == ibus.PROP_STATE_CHECKED)
diff --git a/ui/gtk/panel.py b/ui/gtk/panel.py
index e7850e6..d3cd249 100644
--- a/ui/gtk/panel.py
+++ b/ui/gtk/panel.py
@@ -74,9 +74,7 @@ class Panel(ibus.PanelBase):
# add icon search path
icon_theme = gtk.icon_theme_get_default()
- dir = path.dirname(__file__)
- icondir = path.join(dir, "..", "icons")
- icon_theme.prepend_search_path(icondir)
+ icon_theme.prepend_search_path(self.__icons_dir)
self.__language_bar = LanguageBar()
self.__language_bar.connect("property-activate",
diff --git a/ui/gtk/toolitem.py b/ui/gtk/toolitem.py
index 0e4e4ad..09ad686 100644
--- a/ui/gtk/toolitem.py
+++ b/ui/gtk/toolitem.py
@@ -46,7 +46,7 @@ class ToolButton(gtk.ToolButton, PropItem):
widget = icon.IconWidget(icon_name, 18)
gtk.ToolButton.set_icon_widget(self, widget)
self.set_is_important(False)
- elif self._prop.label:
+ elif self._prop.label.text:
gtk.ToolButton.set_icon_widget(self, None)
self.set_is_important(True)
else: