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

Commit b22ed81f authored by Sukesh Ram's avatar Sukesh Ram Committed by Android (Google) Code Review
Browse files

Merge "Fix Caption Handle Disappearance" into main

parents 8252304d 22cc6660
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -42,11 +42,11 @@ internal class DesktopModeFocusedWindowDecorationViewHolder(
    }

    override fun onHandleMenuOpened() {
        animateCaptionHandleAlpha(startValue = 0f, endValue = 1f)
        animateCaptionHandleAlpha(startValue = 1f, endValue = 0f)
    }

    override fun onHandleMenuClosed() {
        animateCaptionHandleAlpha(startValue = 1f, endValue = 0f)
        animateCaptionHandleAlpha(startValue = 0f, endValue = 1f)
    }

    private fun getCaptionHandleBarColor(taskInfo: RunningTaskInfo): Int {