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

Commit 4094fb3c authored by Romain Guy's avatar Romain Guy Committed by Android Git Automerger
Browse files

am 8d170421: Merge "Fix wrong condition."

* commit '8d170421':
  Fix wrong condition.
parents d304e8bf 8d170421
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -130,7 +130,7 @@ final class IconUtilities {
        int sourceWidth = icon.getIntrinsicWidth();
        int sourceHeight = icon.getIntrinsicHeight();

        if (sourceWidth > 0 && sourceWidth > 0) {
        if (sourceWidth > 0 && sourceHeight > 0) {
            // There are intrinsic sizes.
            if (width < sourceWidth || height < sourceHeight) {
                // It's too big, scale it down.