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

Commit e3064b78 authored by tibbi's avatar tibbi
Browse files

lets try disabling all launcher colors first, then enable the proper one

parent e2020587
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@ buildscript {
        propMinSdkVersion = 16
        propTargetSdkVersion = propCompileSdkVersion
        propVersionCode = 1
        propVersionName = '4.3.29'
        propVersionName = '4.3.30'
        kotlin_version = '1.2.51'
        support_libs = '27.1.1'
    }
+7 −1
Original line number Diff line number Diff line
@@ -536,7 +536,13 @@ fun Context.checkAppIconColor() {
    val appId = baseConfig.appId
    if (appId.isNotEmpty() && baseConfig.lastIconColor != baseConfig.appIconColor) {
        getAppIconColors().forEachIndexed { index, color ->
            toggleAppIconColor(appId, index, color, baseConfig.appIconColor == color)
            toggleAppIconColor(appId, index, color, false)
        }

        getAppIconColors().forEachIndexed { index, color ->
            if (baseConfig.appIconColor == color) {
                toggleAppIconColor(appId, index, color, true)
            }
        }
    }
}