Skip to content
Snippets Groups Projects
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
No related branches found
No related tags found
No related merge requests found
......@@ -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 {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment