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

Commit 178d35d4 authored by Dianne Hackborn's avatar Dianne Hackborn Committed by Android Git Automerger
Browse files

am fc569640: am c4e2bcd4: Merge "Fix issue #22460110:...

am fc569640: am c4e2bcd4: Merge "Fix issue #22460110: AssistStructure.ViewNode.isAssistBlocked() always..." into mnc-dev

* commit 'fc569640':
  Fix issue #22460110: AssistStructure.ViewNode.isAssistBlocked() always...
parents ae460ebf fc569640
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -812,7 +812,7 @@ public class AssistStructure implements Parcelable {
         * Returns true if assist data has been blocked starting at this node in the hierarchy.
         */
        public boolean isAssistBlocked() {
            return (mFlags&ViewNode.FLAGS_ASSIST_BLOCKED) == 0;
            return (mFlags&ViewNode.FLAGS_ASSIST_BLOCKED) != 0;
        }

        /**