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

Commit cac59c8d authored by Chris Craik's avatar Chris Craik Committed by Android Git Automerger
Browse files

am f0a80b68: am ea74883e: am fe01ab10: Merge "Account for alpha in hasShadow()" into lmp-dev

* commit 'f0a80b68f729914c83ee897d8bf8060b031333bc':
  Account for alpha in hasShadow()
parents a0e661ee 031bc658
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -570,7 +570,9 @@ public:
    }

    bool hasShadow() const {
        return getZ() >= 0.0f && getOutline().getPath() != NULL;
        return getZ() >= 0.0f
                && getOutline().getPath() != NULL
                && getOutline().getAlpha() != 0.0f;
    }

private: