mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 00:58:04 +02:00
IDE/TCompPaletteOptionsFrame: fix the error when clicking on the blank of the Pages ListBox
This commit is contained in:
parent
a71b3ddc55
commit
14cf563d3e
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user