Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7206a299 authored by tiansiming's avatar tiansiming
Browse files

Fix wrong position of cursor in OwnerInfoSettings



Bug:N/A
Test:Settings -> Security -> right settings icon of Screen lock
-> Lock screen message.
The cursor shows at the forefront of this EditText.

Change-Id: I86fe1bdbe78f700053e38b0cba4a5c8365af946e
Signed-off-by: default avatartiansiming <tiansiming@xiaomi.com>
parent 60d6ffbc
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -67,6 +67,7 @@ public class OwnerInfoSettings extends InstrumentedDialogFragment implements OnC
        mOwnerInfo = (EditText) mView.findViewById(R.id.owner_info_edit_text);
        if (!TextUtils.isEmpty(info)) {
            mOwnerInfo.setText(info);
            mOwnerInfo.setSelection(info.length());
        }
    }