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

    r39 r42  
    133133begin
    134134  if Assigned(Contacts) then Contacts.AssignToList(ListViewSort1.List)
    135     else ListViewSort1.List.Clear;
     135    else begin
     136      ListViewSort1.List.Clear;
     137    end;
    136138  FilterList(ListViewSort1.List);
    137139end;
     
    178180  ReloadList;
    179181  UpdateInterface;
     182  ListViewFilter1.Reset;
    180183end;
    181184
Note: See TracChangeset for help on using the changeset viewer.