summaryrefslogtreecommitdiffstats
path: root/chrome/browser/chromeos
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/chromeos')
-rw-r--r--chrome/browser/chromeos/text_input/candidate_window.cc9
1 files changed, 6 insertions, 3 deletions
diff --git a/chrome/browser/chromeos/text_input/candidate_window.cc b/chrome/browser/chromeos/text_input/candidate_window.cc
index 0abbd37..91aed20 100644
--- a/chrome/browser/chromeos/text_input/candidate_window.cc
+++ b/chrome/browser/chromeos/text_input/candidate_window.cc
@@ -990,9 +990,12 @@ void CandidateWindowController::OnUpdateLookupTable(
// controller->frame_->Show(), as GetHorizontalOffset() returns a valid
// value only after the Show() method is called.
if (orientation == CandidateWindowView::kVertical) {
- controller->MoveCandidateWindow(
- controller->cursor_location(),
- controller->candidate_window_->GetHorizontalOffset());
+ // Temporarily disabled the window position adjustment since it does not
+ // work fine with ibus-mozc. TODO(satorux): re-enable the feature.
+ //
+ // controller->MoveCandidateWindow(
+ // controller->cursor_location(),
+ // controller->candidate_window_->GetHorizontalOffset());
}
}