Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit aa5b8562 authored by Wei Sheng Shih's avatar Wei Sheng Shih Committed by Android (Google) Code Review
Browse files

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

parents 13149574 ca129bc5
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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