Fix blank calendar icons

This commit is contained in:
MM20 2023-08-06 14:09:46 +02:00
parent 37ad1f6be5
commit 5704bdd0d3
No known key found for this signature in database
GPG Key ID: 0B61A8F2DEAFA389

View File

@ -136,7 +136,7 @@ fun ShapedLauncherIcon(
if (_icon is DynamicLauncherIcon) {
val time = LocalTime.current
LaunchedEffect(time) {
LaunchedEffect(time, _icon) {
currentIcon = _icon.getIcon(time)
}
}