mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 16:37:54 +02:00
IDE/Toolbar: Respect zero max count when displaying file list in IDE toolbars dropdown. Merge request !414.
This commit is contained in:
parent
43a9af055d
commit
5963c7d45f
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user