Fix adding colon
This commit is contained in:
parent
901e1573cf
commit
03cee7bdd3
1 changed files with 2 additions and 1 deletions
|
@ -284,7 +284,8 @@ public class CoordinateInputDialogFragment extends DialogFragment implements Osm
|
||||||
switchToNextInput(focusedEditText.getId());
|
switchToNextInput(focusedEditText.getId());
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
focusedEditText.append((String) keyboardAdapter.getItem(i));
|
focusedEditText.setText(focusedEditText.getText().toString() + keyboardAdapter.getItem(i));
|
||||||
|
focusedEditText.setSelection(focusedEditText.getText().length());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue