TurboPack / MustangpeakEasyListview

TurboPack MustangpeakEasyListview is part of VirtualShellTools for the Listview but can be used for a TListview Replacement that is faster and more customizable.
Other
38 stars 22 forks source link

Overlay on icons #8

Open pyscripter opened 4 years ago

pyscripter commented 4 years ago
In order for overlays to be drawn on icons:

EasyListview.pas, line 21054: 

if OverlayIndex > -1 then

  fStyle := FStyle or IndexToOverLayMask(OverlayIndex);

must be something like:

if OverlayIndex > -1 then begin
  ImageList_SetOverlayImage(Images.Handle, OverlayIndex, 1);
  fStyle := FStyle or IndexToOverLayMask(1);
end;

Original issue reported on code.google.com by ion.silvestru@gmail.com on 22 Nov 2011 at 1:30

romankassebaum commented 3 years ago

I added your patch. If I should test something I need a test project.