diff options
| author | Huang Peng <shawn.p.huang@gmail.com> | 2009-02-17 12:45:30 +0800 |
|---|---|---|
| committer | Huang Peng <shawn.p.huang@gmail.com> | 2009-02-17 12:45:30 +0800 |
| commit | 2a608292745a8caedbb1b19e019346e27c535725 (patch) | |
| tree | 074ac1dadc6228a17d87df2feb84a10d06cbbafb /setup | |
| parent | d19d55944eed84a32a874b6e9b080f9bddb67a5b (diff) | |
| download | ibus-2a608292745a8caedbb1b19e019346e27c535725.tar.gz ibus-2a608292745a8caedbb1b19e019346e27c535725.tar.xz ibus-2a608292745a8caedbb1b19e019346e27c535725.zip | |
Use right icon for engine without icon.
Diffstat (limited to 'setup')
| -rw-r--r-- | setup/enginecombobox.py | 2 | ||||
| -rw-r--r-- | setup/enginetreeview.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/setup/enginecombobox.py b/setup/enginecombobox.py index c8eaa15..7c65c5e 100644 --- a/setup/enginecombobox.py +++ b/setup/enginecombobox.py @@ -69,7 +69,7 @@ class EngineComboBox(gtk.ComboBox): renderer.set_property("sensitive", True) pixbuf = load_icon(engine.icon, gtk.ICON_SIZE_LARGE_TOOLBAR) if pixbuf == None: - pixbuf = load_icon("default-engine", gtk.ICON_SIZE_LARGE_TOOLBAR) + pixbuf = load_icon("engine-default", gtk.ICON_SIZE_LARGE_TOOLBAR) if pixbuf == None: pixbuf = load_icon("gtk-missing-image", gtk.ICON_SIZE_LARGE_TOOLBAR) renderer.set_property("pixbuf", pixbuf) diff --git a/setup/enginetreeview.py b/setup/enginetreeview.py index 4e4c131..70130a2 100644 --- a/setup/enginetreeview.py +++ b/setup/enginetreeview.py @@ -65,7 +65,7 @@ class EngineTreeView(gtk.TreeView): pixbuf = load_icon(engine.icon, gtk.ICON_SIZE_LARGE_TOOLBAR) if pixbuf == None: - pixbuf = load_icon("default-engine", gtk.ICON_SIZE_LARGE_TOOLBAR) + pixbuf = load_icon("engine-default", gtk.ICON_SIZE_LARGE_TOOLBAR) if pixbuf == None: pixbuf = load_icon("gtk-missing-image", gtk.ICON_SIZE_LARGE_TOOLBAR) |
