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

Commit be97cfac authored by Marin Shalamanov's avatar Marin Shalamanov
Browse files

Check for seamlessness in LayerRequirement::operator==

Bug: 161776961
Test: presubmit
Change-Id: I0beeeadebde55c212f0584937b651a288ba1613d
parent fc50f74c
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -232,7 +232,8 @@ public:

        bool operator==(const LayerRequirement& other) const {
            return name == other.name && vote == other.vote &&
                    desiredRefreshRate == other.desiredRefreshRate && weight == other.weight &&
                    desiredRefreshRate == other.desiredRefreshRate &&
                    seamlessness == other.seamlessness && weight == other.weight &&
                    focused == other.focused;
        }