Merge "Fix inverted conditional in View.setFilterTouchesWhenObscured." into klp-dev
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user