Merge changes from topic "aris-revert-resubmit-sc" into sc-dev

* changes:
  Make Activites touch opaque - DO NOT MERGE
  Revert "Make Activites touch opaque - DO NOT MERGE"
This commit is contained in:
Linus Tufvesson
2023-03-01 17:52:13 +00:00
committed by Android (Google) Code Review

View File

@@ -86,6 +86,10 @@ class ActivityRecordInputSink {
mInputWindowHandle.layoutParamsFlags &= ~WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE; mInputWindowHandle.layoutParamsFlags &= ~WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE;
changed |= notTouchable; changed |= notTouchable;
} }
if (mInputWindowHandle.displayId != mActivityRecord.getDisplayId()) {
mInputWindowHandle.displayId = mActivityRecord.getDisplayId();
changed = true;
}
return changed; return changed;
} }