var -> val

This commit is contained in:
MM20 2024-12-24 11:23:01 +01:00
parent 0c6c4672cc
commit 27ac650930
No known key found for this signature in database
GPG Key ID: 0B61A8F2DEAFA389

View File

@ -74,14 +74,14 @@ class IconService(
private val cache = LruCache<String, LauncherIcon>(200)
private var iconProviders: MutableStateFlow<List<IconProvider>> = MutableStateFlow(listOf())
private val iconProviders: MutableStateFlow<List<IconProvider>> = MutableStateFlow(listOf())
/**
* Signal that installed icon packs have been updated. Force a reload of all icons.
*/
private val iconPacksUpdated = MutableSharedFlow<Unit>(1)
private var transformations: MutableStateFlow<List<LauncherIconTransformation>> =
private val transformations: MutableStateFlow<List<LauncherIconTransformation>> =
MutableStateFlow(
listOf()
)