Unverified Commit 201bb4fe authored by Mygod's avatar Mygod Committed by GitHub

Remove unnecessary tint in TileService

parent 026d1ecb
...@@ -34,7 +34,7 @@ import android.service.quicksettings.TileService as BaseTileService ...@@ -34,7 +34,7 @@ import android.service.quicksettings.TileService as BaseTileService
@RequiresApi(24) @RequiresApi(24)
class TileService : BaseTileService(), ShadowsocksConnection.Interface { class TileService : BaseTileService(), ShadowsocksConnection.Interface {
private val iconIdle by lazy { Icon.createWithResource(this, R.drawable.ic_service_idle).setTint(0x79ffffff) } private val iconIdle by lazy { Icon.createWithResource(this, R.drawable.ic_service_idle) }
private val iconBusy by lazy { Icon.createWithResource(this, R.drawable.ic_service_busy) } private val iconBusy by lazy { Icon.createWithResource(this, R.drawable.ic_service_busy) }
private val iconConnected by lazy { Icon.createWithResource(this, R.drawable.ic_service_active) } private val iconConnected by lazy { Icon.createWithResource(this, R.drawable.ic_service_active) }
private val keyguard by lazy { getSystemService(Context.KEYGUARD_SERVICE) as KeyguardManager } private val keyguard by lazy { getSystemService(Context.KEYGUARD_SERVICE) as KeyguardManager }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment