am 80af5316: am f260ed09: Merge "Fix inverted conditional in View.setFilterTouchesWhenObscured." into klp-dev
* commit '80af53162477385f20956a55305d0c048ef5c1df': Fix inverted conditional in View.setFilterTouchesWhenObscured.
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