Skip to content
Snippets Groups Projects
Commit 22cc6660 authored by Sukesh Ram's avatar Sukesh Ram
Browse files

Fix Caption Handle Disappearance

Solve the issue where caption handle keeps disappearing in freeform mode.

Test: Manually tested in freeform.
Bug: 308663385
Change-Id: I24233edbd2440e373cb9c40701e2f8f2cf79707a
parent 6f4179f5
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