Skip to content

Commit

Permalink
SystemUIGoogle: Fix now playing visibility updates
Browse files Browse the repository at this point in the history
Change-Id: I8b4320ec938bb10fd5647464d3b64ffe090f8261
Signed-off-by: minaripenguin <minaripenguin@users.noreply.github.com>
  • Loading branch information
minaripenguin authored and Kitsunejasutin committed Aug 28, 2023
1 parent 411b213 commit bf2e59a
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -208,6 +208,10 @@ class AmbientIndicationContainer @JvmOverloads constructor(
private fun updatePill() {
if (isMediaPlaying()) {
hideAmbientMusic()
val iconView = mIconView
val textView = mTextView
textView?.visibility = View.GONE
iconView?.visibility = View.GONE
return
}
val indicationTextMode = mIndicationTextMode
Expand Down

0 comments on commit bf2e59a

Please sign in to comment.