Index: chrome/browser/chromeos/input_method/candidate_window.cc |
diff --git a/chrome/browser/chromeos/input_method/candidate_window.cc b/chrome/browser/chromeos/input_method/candidate_window.cc |
index 6dce7ecebf2e6fca96ee41f94f4d8ea2f68f2a4a..3fb3c07db58113bb304213b6c3e86df86eb08f4b 100644 |
--- a/chrome/browser/chromeos/input_method/candidate_window.cc |
+++ b/chrome/browser/chromeos/input_method/candidate_window.cc |
@@ -1185,7 +1185,8 @@ void CandidateWindowView::OnCandidatePressed( |
gfx::Point converted_location = location; |
views::View::ConvertPointToView(this, candidate_views_[i], |
&converted_location); |
- if (candidate_views_[i]->HitTest(converted_location)) { |
+ if (candidate_views_[i]->HitTest(gfx::Rect(converted_location, |
+ gfx::Size(0, 0)))) { |
SelectCandidateAt(i); |
break; |
} |