Skip to content

Commit

Permalink
if native field is not open, we just report height, do not include na…
Browse files Browse the repository at this point in the history
…tiveInput height adjustments
  • Loading branch information
Tom-Ski committed Oct 4, 2024
1 parent 6572024 commit bce76e8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -702,7 +702,7 @@ public void onKeyboardHeightChanged (int height, int leftInset, int rightInset,
height += getSoftButtonsBarHeight();
}

if (relativeLayoutField == null) {
if (!isNativeInputOpen()) {
if (observer != null) observer.onKeyboardHeightChanged(height);
return;
}
Expand Down

0 comments on commit bce76e8

Please sign in to comment.