Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 573a388c authored by shamim-emon's avatar shamim-emon
Browse files

Fixes one of the edge case of Address of only one recipient not shown but "+1"

parent 827c224a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -612,7 +612,7 @@ public abstract class TokenCompleteTextView<T> extends AppCompatAutoCompleteText
     */
    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) {