Skip to content

Commit

Permalink
Merge branch 'next'
Browse files Browse the repository at this point in the history
  • Loading branch information
skykelsey committed Jul 13, 2016
2 parents dda74f8 + 4644254 commit 6ca5598
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,8 @@ public View getView(final int position, View convertView, ViewGroup parent) {
composingEditText.post(new Runnable() {
public void run() {
if (composingEditText != null) {
composingEditText.requestFocus();
// This sometimes prevented the composing EditText from gaining focus on user touch.
//composingEditText.requestFocus();
}
}
});
Expand Down

0 comments on commit 6ca5598

Please sign in to comment.