Skip to content

Commit 89b1034

Browse files
committed
Fix issue in timeline screen.
1 parent c79f2ff commit 89b1034

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

vector/src/main/java/im/vector/app/core/utils/ExpandingBottomSheetBehavior.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -658,7 +658,8 @@ class ExpandingBottomSheetBehavior<V : View> : CoordinatorLayout.Behavior<V> {
658658
val insetsType = WindowInsetsCompat.Type.systemBars() or WindowInsetsCompat.Type.ime()
659659
val imeInsets = insets.getInsets(insetsType)
660660
insetTop = imeInsets.top
661-
insetBottom = imeInsets.bottom
661+
// Now that edgeToEdge is enabled, disable the bottom padding.
662+
insetBottom = 0
662663
insetLeft = imeInsets.left
663664
insetRight = imeInsets.right
664665

0 commit comments

Comments
 (0)