Merge "Separate rotationHint as different object of WindowBounds" into main

This commit is contained in:
Wei Sheng Shih
2023-10-19 01:53:16 +00:00
committed by Android (Google) Code Review
@@ -67,7 +67,8 @@ public class WindowBounds {
return false;
}
WindowBounds other = (WindowBounds) obj;
return other.bounds.equals(bounds) && other.insets.equals(insets);
return other.bounds.equals(bounds) && other.insets.equals(insets)
&& other.rotationHint == rotationHint;
}
@Override