Prioritize media controls in clock widget

Close #1697
This commit is contained in:
MM20
2025-12-23 20:46:12 +01:00
parent c09a5aa425
commit c9f47c35b0

View File

@@ -52,7 +52,7 @@ class MusicPartProvider : PartProvider, KoinComponent {
override fun getRanking(context: Context): Flow<Int> = channelFlow {
musicService.playbackState.collectLatest {
if (it == PlaybackState.Stopped) send(0)
else send(50)
else send(80)
}
}