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

Commit 709173fe authored by Joanne Chung's avatar Joanne Chung Committed by Android (Google) Code Review
Browse files

Merge "Refine Activity.isVisibleForAutofill() to let it more readable"

parents bbc2d412 bf9d37b4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -8411,7 +8411,7 @@ public class Activity extends ContextThemeWrapper
     * @hide
     */
    public final boolean isVisibleForAutofill() {
        return mStopped;
        return !mStopped;
    }

    /**
+1 −1
Original line number Diff line number Diff line
@@ -324,7 +324,7 @@ public final class AutofillClientController implements AutofillManager.AutofillC

    @Override
    public boolean autofillClientIsVisibleForAutofill() {
        return !mActivity.isVisibleForAutofill();
        return mActivity.isVisibleForAutofill();
    }

    @Override