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/UFormProperty.pas

    r39 r42  
    8080    EditName.Text := FContactProperty.Name;
    8181    EditAttributes.Text := FContactProperty.Attributes.DelimitedText;
    82     EditValues.Text := FContactProperty.Values.DelimitedText;
     82    EditValues.Text := FContactProperty.Value;
    8383  end else begin
    8484    EditName.Text := '';
     
    9595  FContactProperty.Name := EditName.Text;
    9696  FContactProperty.Attributes.DelimitedText := EditAttributes.Text;
    97   FContactProperty.Values.DelimitedText := EditValues.Text;
     97  FContactProperty.Value := EditValues.Text;
    9898end;
    9999
Note: See TracChangeset for help on using the changeset viewer.