Skip to content

Commit

Permalink
fix: keyboard not show in some search occations
Browse files Browse the repository at this point in the history
Signed-off-by: Next Alone <[email protected]>
  • Loading branch information
NextAlone committed Feb 15, 2024
1 parent 78b3687 commit 5c4a1ab
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30449,7 +30449,7 @@ public void openSearchWithText(String text) {
updateBottomOverlay();
}
if ((threadMessageId == 0 || isTopic || chatMode == MODE_SAVED) && !UserObject.isReplyUser(currentUser)) {
openSearchKeyboard = text == null;
openSearchKeyboard = text == null || text.isEmpty();
if (searchItem != null) {
searchItem.openSearch(openSearchKeyboard);
}
Expand Down

0 comments on commit 5c4a1ab

Please sign in to comment.