Hi all,
Windows 11, Lazarus 4.2, FPC 3.2.2
I have a TShellListView and a combobox where I can select the file mask for it, either *.* or *.txt
When i scroll down and select a file, then set a different mask, the list shows an empty space artifact at the top scoll position. It disappears aftert scrolling up and down several times.
On a quick test with Ubuntu gtk2, that issue does not appear.
The list has only default properties set. Codewise I do nothing really special:
procedure TForm1.comboMaskChange(Sender: TObject);
begin
ShellListView1.Root:='c:\temp';
ShellListView1.Mask:=comboMask.Text;
end;
The artifact shows like the attached image.
I already tried to wrap the two lines in .Begin/EndUpdate, added a .Refresh and a .Repaint - nothing helped here.