IDE/TCompPaletteOptionsFrame: fix the error when clicking on the blank of the Pages ListBox

This commit is contained in:
rich2014 2023-07-01 16:49:11 +08:00
parent a71b3ddc55
commit 14cf563d3e

View File

@ -410,9 +410,12 @@ var
begin
lb := Sender as TListBox;
if lb.ItemIndex = fPrevPageIndex then Exit;
FillComponents(lb.Items[lb.ItemIndex]);
UpdatePageMoveButtons(lb.ItemIndex);
UpdateCompMoveButtons(-1);
if lb.ItemIndex >= 0 then
begin
FillComponents(lb.Items[lb.ItemIndex]);
UpdatePageMoveButtons(lb.ItemIndex);
UpdateCompMoveButtons(-1);
end;
fPrevPageIndex := lb.ItemIndex;
end;