am 3e1b03e4: am 5693d403: am 96abebd0: am 80af5316: am f260ed09: Merge "Fix inverted conditional in View.setFilterTouchesWhenObscured." into klp-dev
* commit '3e1b03e4e73d46a752537e6dcec9abdf6f5116a6': Fix inverted conditional in View.setFilterTouchesWhenObscured.
This commit is contained in:
@@ -6901,7 +6901,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