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

Commit 0f6b5c97 authored by Michał Brzeziński's avatar Michał Brzeziński Committed by Android (Google) Code Review
Browse files

Merge "Hiding split shade media container when not needed" into sc-dev

parents eb267ed8 f6d72ca6
Loading
Loading
Loading
Loading
+3 −5
Original line number Diff line number Diff line
@@ -186,12 +186,10 @@ class KeyguardMediaController @Inject constructor(
    }

    private fun hideMediaPlayer() {
        if (useSplitShade) {
        // always hide splitShadeContainer as it's initially visible and may influence layout
        setVisibility(splitShadeContainer, View.GONE)
        } else {
        setVisibility(singlePaneContainer, View.GONE)
    }
    }

    private fun setVisibility(view: ViewGroup?, newVisibility: Int) {
        val previousVisibility = view?.visibility