Download wizard: manual input form resets after losing the focus #131
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The form for manually entering server/activation/confirmation code resets after losing the focus.
It makes it impossible to copy and paste this information from another app.
For example, I copy server address, paste it to OpenEUICC, switch to the notepad to copy activation code, switch back to OpenEUICC - and server address is gone!
App version: v1.0.0-225-g895899d (latest commit as of now)
i think, this is state restore problem
override fun onStart() {
super.onStart()
smdp.editText!!.setText(state.smdp)
matchingId.editText!!.setText(state.matchingId)
confirmationCode.editText!!.setText(state.confirmationCode)
imei.editText!!.setText(state.imei)
updateInputCompleteness()
}