Skip to content

Commit a8948bd

Browse files
committed
Fix interactive keyboard dismiss
1 parent 09ac33b commit a8948bd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Sources/InputBarAccessoryView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ open class InputBarAccessoryView: UIView {
465465

466466
contentViewLayoutSet = NSLayoutConstraintSet(
467467
top: contentView.topAnchor.constraint(equalTo: topStackView.bottomAnchor, constant: padding.top),
468-
bottom: contentView.bottomAnchor.constraint(equalTo: safeAreaLayoutGuide.bottomAnchor, constant: -padding.bottom),
468+
bottom: contentView.bottomAnchor.constraint(lessThanOrEqualTo: safeAreaLayoutGuide.bottomAnchor, constant: -padding.bottom),
469469
left: contentView.leftAnchor.constraint(equalTo: safeAreaLayoutGuide.leftAnchor, constant: padding.left + frameInsets.left),
470470
right: contentView.rightAnchor.constraint(equalTo: safeAreaLayoutGuide.rightAnchor, constant: -(padding.right + frameInsets.right))
471471
)

0 commit comments

Comments
 (0)