diff --git a/data/applications/src/main/java/de/mm20/launcher2/applications/LauncherApp.kt b/data/applications/src/main/java/de/mm20/launcher2/applications/LauncherApp.kt index c1216ec8..57279cc5 100644 --- a/data/applications/src/main/java/de/mm20/launcher2/applications/LauncherApp.kt +++ b/data/applications/src/main/java/de/mm20/launcher2/applications/LauncherApp.kt @@ -90,10 +90,8 @@ internal data class LauncherApp( try { val icon = withContext(Dispatchers.IO) { - // Adaptive icons have a size of 108dp (https://developer.android.com/develop/ui/views/launch/icon_design_adaptive#design-adaptive-icons), - // but we scale them to 1.5x so the inbounds are only 72dp val density = size / (108/1.5) - launcherActivityInfo.getIcon((160 * density).roundToInt()) + launcherActivityInfo.getIcon(0) } ?: return null if (icon is AdaptiveIconDrawable) {