Ignore:
Timestamp:
Dec 2, 2021, 12:18:18 PM (3 years ago)
Author:
chronos
Message:
  • Fixed: Loading of JPEG photo. Image binary data were affected by TStringList. Store them just as a string type.
  • Fixed: Reset list filter if different file is opened to avoid confusing empty list after file open.
  • Fixed: Decoding long quoted-printable text due to range check error of small index variable type.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Forms/UFormContact.pas

    r40 r42  
    171171    Item.Caption := Contact.Properties[Item.Index].Name;
    172172    Item.SubItems.Add(Attributes.DelimitedText);
    173     Item.SubItems.Add(Contact.Properties[Item.Index].Values.DelimitedText);
     173    Item.SubItems.Add(Contact.Properties[Item.Index].Value);
    174174    Item.Data := Contact.Properties[Item.Index];
    175175  end;
Note: See TracChangeset for help on using the changeset viewer.