Skip to content
Snippets Groups Projects
Commit 458ceae3 authored by Mohammad Hasan Keramat J's avatar Mohammad Hasan Keramat J :homes:
Browse files

fixup! fwb: SystemUI: Set qs bottom drawable footer color to transparent

Change-Id: If6e4a6d2c4d7b34b029ae500bb368e5173dd1fe9
parent 28fa3afd
No related branches found
No related tags found
No related merge requests found
......@@ -92,12 +92,12 @@ class FooterActionsViewModel(
// b/240563302).
val delay = 0.99f
_alpha.value = expansion
_backgroundAlpha.value = max(0f, expansion - delay) / (1f - delay)
_backgroundAlpha.value = 0f
} else {
// Only start fading in the footer actions when we are at least 90% expanded.
val delay = 0.9f
_alpha.value = max(0f, expansion - delay) / (1 - delay)
_backgroundAlpha.value = 1f
_backgroundAlpha.value = 0f
}
}
......
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