IDE/Toolbar: Respect zero max count when displaying file list in IDE toolbars dropdown. Merge request !414.

This commit is contained in:
n7800 2024-12-31 01:05:21 +05:00 committed by Juha
parent 43a9af055d
commit 5963c7d45f

View File

@ -525,12 +525,10 @@ procedure TOpenFileToolButton.RefreshMenu(Sender: TObject);
var
i: integer;
begin
i := 0;
while (i < List.Count) and (i < MaxCount) do
begin
if MaxCount <= 0 then
MaxCount := List.Count;
for i := 0 to Min(MaxCount, List.Count) - 1 do
AddFile(List[i], AOnClick);
inc(i);
end;
end;
begin