We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c79f2ff commit 89b1034Copy full SHA for 89b1034
vector/src/main/java/im/vector/app/core/utils/ExpandingBottomSheetBehavior.kt
@@ -658,7 +658,8 @@ class ExpandingBottomSheetBehavior<V : View> : CoordinatorLayout.Behavior<V> {
658
val insetsType = WindowInsetsCompat.Type.systemBars() or WindowInsetsCompat.Type.ime()
659
val imeInsets = insets.getInsets(insetsType)
660
insetTop = imeInsets.top
661
- insetBottom = imeInsets.bottom
+ // Now that edgeToEdge is enabled, disable the bottom padding.
662
+ insetBottom = 0
663
insetLeft = imeInsets.left
664
insetRight = imeInsets.right
665
0 commit comments