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

Commit feeafe2e authored by Jim Miller's avatar Jim Miller
Browse files

Fix 6663465: remove flagNoEnterAction in favor of actionNext

This fixes a bug where the return key was showing in some layouts
for choose/confirm password screens in Settings.  Now we just use
"actionNext" which ensures we see consistent behavior across
devices.

Change-Id: I4bf3033654b85f14c55de6f418caaf1ce563c33a
parent 5ea994c5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -50,6 +50,7 @@
            android:singleLine="true"
            android:textStyle="bold"
            android:inputType="textPassword"
            android:imeOptions="actionNext"
            android:gravity="center"
            android:layout_gravity="center"
            android:textSize="24sp"
@@ -58,7 +59,6 @@
            android:textAppearance="?android:attr/textAppearanceLarge"
            android:background="@drawable/password_field_default"
            android:textColor="#ffffffff"
            android:imeOptions="actionNext|flagNoEnterAction"
        />
    </LinearLayout>

+1 −1
Original line number Diff line number Diff line
@@ -51,6 +51,7 @@
            android:singleLine="true"
            android:textStyle="bold"
            android:inputType="textPassword"
            android:imeOptions="actionNext"
            android:gravity="center"
            android:layout_gravity="center"
            android:textSize="24sp"
@@ -59,7 +60,6 @@
            android:textAppearance="?android:attr/textAppearanceLarge"
            android:background="@drawable/password_field_default"
            android:textColor="#ffffffff"
            android:imeOptions="actionNext|flagNoEnterAction"
        />
    </LinearLayout>

+1 −0
Original line number Diff line number Diff line
@@ -51,6 +51,7 @@
            android:singleLine="true"
            android:textStyle="bold"
            android:inputType="textPassword"
            android:imeOptions="actionNext"
            android:gravity="center"
            android:layout_gravity="center"
            android:textSize="24sp"
+1 −0
Original line number Diff line number Diff line
@@ -52,6 +52,7 @@
            android:singleLine="true"
            android:textStyle="bold"
            android:inputType="textPassword"
            android:imeOptions="actionNext"
            android:gravity="center"
            android:layout_gravity="center"
            android:textSize="24sp"
+1 −0
Original line number Diff line number Diff line
@@ -46,6 +46,7 @@
        android:singleLine="true"
        android:textStyle="bold"
        android:inputType="textPassword"
        android:imeOptions="actionNext"
        android:gravity="center"
        android:layout_gravity="center"
        android:textSize="32sp"
Loading