From dfb97c1ed77aabd6c25c3a398920feb715d72f60 Mon Sep 17 00:00:00 2001 From: Takao Fujiwara Date: Fri, 25 Mar 2011 15:16:57 +0900 Subject: [PATCH] statusIconDispatcher: add ibus-ui-gtk to standard implementations As a stop-gap measure until we have a native input method tray icon, add ibus-ui-gtk to STANDARD_TRAY_ICON_IMPLEMENTATIONS so that the IBus status icon shows up in the status area rather than in the message tray. The message tray location doesn't work for the function of showing the current input method when switching between windows or changing input methods. https://bugzilla.gnome.org/show_bug.cgi?id=641531 --- js/ui/statusIconDispatcher.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/ui/statusIconDispatcher.js b/js/ui/statusIconDispatcher.js index e159b3994..de1c4bf21 100644 --- a/js/ui/statusIconDispatcher.js +++ b/js/ui/statusIconDispatcher.js @@ -19,7 +19,8 @@ const STANDARD_TRAY_ICON_IMPLEMENTATIONS = { 'a11y-keyboard': 'a11y', 'kbd-scrolllock': 'keyboard', 'kbd-numlock': 'keyboard', - 'kbd-capslock': 'keyboard' + 'kbd-capslock': 'keyboard', + 'ibus-ui-gtk': 'input-method', }; function StatusIconDispatcher() {