Bug 1017651 - Reshow cursor once autocomplete text is gone; r=wesj

This commit is contained in:
Jim Chen 2014-06-04 12:19:19 -04:00
Родитель fad6d25820
Коммит 820bafdf74
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -260,6 +260,11 @@ public class ToolbarEditText extends CustomEditText
// replace() preserves the autocomplete spans that we set before.
text.replace(autoCompleteStart, textLength, result, autoCompleteStart, resultLength);
// Reshow the cursor if there is no longer any autocomplete text.
if (autoCompleteStart == resultLength) {
setCursorVisible(true);
}
endSettingAutocomplete();
} else {