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

Commit da115440 authored by Menghan Li's avatar Menghan Li Committed by Android (Google) Code Review
Browse files

Merge "Fix a11y service icons are tiny after changing display size to "Largest"" into sc-v2-dev

parents e8582f9c a1674787
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1013,7 +1013,8 @@ public final class Utils extends com.android.settingslib.Utils {
        Drawable safeIcon = icon;

        if ((icon != null) && !(icon instanceof VectorDrawable)) {
            safeIcon = getSafeDrawable(icon, 500, 500);
            safeIcon = getSafeDrawable(icon,
                    /* MAX_DRAWABLE_SIZE */ 600, /* MAX_DRAWABLE_SIZE */ 600);
        }

        return safeIcon;