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

Commit aba56658 authored by Jeff Brown's avatar Jeff Brown
Browse files

Fix inverted conditional in View.setFilterTouchesWhenObscured.

Bug: 13530806
Change-Id: Icdaf909c355f5b22635e1060f2190502916b144f
parent 4cb1bc28
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);
    }