Skip to content

Commit

Permalink
Layout extended items in addition to the first line items
Browse files Browse the repository at this point in the history
In async compose, when items are set, the extended area
can also be visible while the candidates update, so we
have to make sure those items are updated as well.

Signed-off-by: Songlin Jiang <[email protected]>
  • Loading branch information
HollowMan6 committed Jan 23, 2024
1 parent 6bcf06e commit 0d812f2
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,9 @@ public void setItems(List<Words> aItems) {
}
if (mLineWidth > 0) {
layoutItems();
if (mIsExtended) {
layoutExtendedItems();
}
}
}

Expand Down

0 comments on commit 0d812f2

Please sign in to comment.