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

Commit 1c394559 authored by Jeff Brown's avatar Jeff Brown Committed by Android Git Automerger
Browse files

am 80af5316: am f260ed09: Merge "Fix inverted conditional in...

am 80af5316: am f260ed09: Merge "Fix inverted conditional in View.setFilterTouchesWhenObscured." into klp-dev

* commit '80af5316':
  Fix inverted conditional in View.setFilterTouchesWhenObscured.
parents 50fa0bd4 80af5316
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -6543,7 +6543,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback,
     * @attr ref android.R.styleable#View_filterTouchesWhenObscured
     */
    public void setFilterTouchesWhenObscured(boolean enabled) {
        setFlags(enabled ? 0 : FILTER_TOUCHES_WHEN_OBSCURED,
        setFlags(enabled ? FILTER_TOUCHES_WHEN_OBSCURED : 0,
                FILTER_TOUCHES_WHEN_OBSCURED);
    }