ShapedLauncherIcon: Add missing when else branch

This commit is contained in:
MM20 2022-08-22 22:08:38 +02:00
parent dcf5d3f8b1
commit 98d33733b2
No known key found for this signature in database
GPG Key ID: 0B61A8F2DEAFA389

View File

@ -66,7 +66,7 @@ fun ShapedLauncherIcon(
when (icon) {
is DynamicLauncherIcon -> null
is StaticLauncherIcon -> icon
null -> null
else -> null
}
)
}