chadliu23 / mozc

Automatically exported from code.google.com/p/mozc
0 stars 0 forks source link

入力中の文字の1文字目が勝手に確定される(Mozc for Android) #193

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Can I report in Japanese? If I should report this in English, feel free to tell 
me.

What steps will reproduce the problem?

1. 
GalaxyNexusで(Chromeでなく)Androidデフォルトブラウザを起動
2. 
Google検索でカーソルをテキストエリアに合わせ表示された��
�索履歴をタップし検索結果を表示する
3. テキストエリアに入力されている検索ワードを削除する
4. テキストを入力する
5. 1文字目が勝手に確定される

What is the expected output?

What do you see instead?

What version of the product are you using? On what operating system?
Android 4.2

Please provide any additional information below.

一時的に以下のコードで回避してみましたがいかがでしょ��
�か
- original
SelectionTracker.java l.350
if (candidatesStart != -1 || candidatesEnd != -1) {
  MozcLog.i("Unknown candidates: " + candidatesStart + ":" + candidatesEnd);
}

- fix
if (candidatesStart != -1 || candidatesEnd != -1) {
  MozcLog.i("Unknown candidates: " + candidatesStart + ":" + candidatesEnd);
  if ((candidatesStart >= 0) || (candidatesEnd >= 0)) return DO_NOTHING;
}

Original issue reported on code.google.com by griffith...@gmail.com on 27 Jun 2013 at 2:13

GoogleCodeExporter commented 9 years ago
頂いたパッチとは異なる方法ですが、r163にて修正済みです�
��
ご報告およびご提案ありがとうございました。

---
Fixed at r163. Thank you for reporting and sending a patch.

Original comment by matsuza...@google.com on 8 Aug 2013 at 12:36