Skip to content

Commit 4f67d5e

Browse files
committed
increase candidates count for vertical scroll
1 parent 4803a24 commit 4f67d5e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

entry/src/main/cpp/webkeyboard/webkeyboard.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,8 @@ void WebKeyboard::setCandidatesAsync(const std::vector<Candidate> &candidates, i
7474
notify_main_async(j.dump());
7575
}
7676

77-
void WebKeyboard::expand() { scroll(0, 20); }
77+
// Vertically 2 screens.
78+
void WebKeyboard::expand() { scroll(0, 60); }
7879

7980
void WebKeyboard::scroll(int start, int count) {
8081
auto ic = instance_->mostRecentInputContext();

0 commit comments

Comments
 (0)