Skip to content

Commit

Permalink
Fixes one of the edge case of Address of only one recipient not shown…
Browse files Browse the repository at this point in the history
… but "+1"
  • Loading branch information
shamim-emon committed Jan 24, 2025
1 parent 827c224 commit 573a388
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -612,7 +612,7 @@ protected void onLayout(boolean changed, int left, int top, int right, int botto
*/
public void performCollapse(boolean hasFocus) {
internalEditInProgress = true;
if (!hasFocus) {
if (!hasFocus && getObjects().size() > 1) {
// Display +x thingy/ellipse if appropriate
final Editable text = getText();
if (text != null && hiddenContent == null && lastLayout != null) {
Expand Down

0 comments on commit 573a388

Please sign in to comment.