diff options
author | mukai@chromium.org <mukai@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-04 01:55:24 +0000 |
---|---|---|
committer | mukai@chromium.org <mukai@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-04 01:55:24 +0000 |
commit | 4586bf050399b2607c803e781fa99606f1d9e731 (patch) | |
tree | d84f0d1084be387d7525df12d3111388b0fe8264 /ash/system | |
parent | ab69e3afbd0226a1eeb06eeb2ff6e314f16721e7 (diff) | |
download | chromium_src-4586bf050399b2607c803e781fa99606f1d9e731.zip chromium_src-4586bf050399b2607c803e781fa99606f1d9e731.tar.gz chromium_src-4586bf050399b2607c803e781fa99606f1d9e731.tar.bz2 |
Close uber tray when IME property is selected.
BUG=119679
TEST=manually
Review URL: https://chromiumcodereview.appspot.com/9959142
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@130538 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/system')
-rw-r--r-- | ash/system/ime/tray_ime.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ash/system/ime/tray_ime.cc b/ash/system/ime/tray_ime.cc index acc37b9..c004c0a 100644 --- a/ash/system/ime/tray_ime.cc +++ b/ash/system/ime/tray_ime.cc @@ -156,6 +156,7 @@ class IMEDetailedView : public views::View, if (prop_find != property_map_.end()) { std::string key = prop_find->second; delegate->ActivateIMEProperty(key); + GetWidget()->Close(); } } } |