diff options
author | sschmitz@chromium.org <sschmitz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-25 20:26:56 +0000 |
---|---|---|
committer | sschmitz@chromium.org <sschmitz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-25 20:26:56 +0000 |
commit | 02f7fc62ec52785a334efcb7d8d2d612f53a5915 (patch) | |
tree | 1b94c2ebe01890c1354904efa73da68a04aee664 /ash/system/ime | |
parent | 20258b616e7feff4ac78f634e9e9e89402352bf8 (diff) | |
download | chromium_src-02f7fc62ec52785a334efcb7d8d2d612f53a5915.zip chromium_src-02f7fc62ec52785a334efcb7d8d2d612f53a5915.tar.gz chromium_src-02f7fc62ec52785a334efcb7d8d2d612f53a5915.tar.bz2 |
fix "IME changed" notification uses a wrong field of IME
Added a medium length name to IMEInfo. It is used for the bubble with "Your input method has changed to ...". In most cases the medium length text is equal to the short text except where this issue is concerned.
BUG=137629
TEST=Enable English and Japanese keyboards; restart; Control + Space: observe popup bubble "Your input method has changed to..."
Review URL: https://chromiumcodereview.appspot.com/10960060
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@158641 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/system/ime')
-rw-r--r-- | ash/system/ime/tray_ime.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ash/system/ime/tray_ime.cc b/ash/system/ime/tray_ime.cc index 5f72fbb..6abcd81 100644 --- a/ash/system/ime/tray_ime.cc +++ b/ash/system/ime/tray_ime.cc @@ -219,7 +219,7 @@ class IMENotificationView : public TrayNotificationView { return new views::Label( l10n_util::GetStringFUTF16( IDS_ASH_STATUS_TRAY_IME_TURNED_ON_BUBBLE, - current.short_name)); + current.medium_name)); } |