mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-12-04 21:37:40 +01:00
LCL: Don't call EditButton.EditChange while component is loading.
git-svn-id: trunk@49234 -
This commit is contained in:
parent
255bf5782e
commit
abdada70fe
@ -1015,7 +1015,8 @@ end;
|
||||
|
||||
procedure TCustomEditButton.InternalOnEditChange(Sender: TObject);
|
||||
begin
|
||||
EditChange;
|
||||
if not (csLoading in ComponentState) then
|
||||
EditChange;
|
||||
end;
|
||||
|
||||
procedure TCustomEditButton.InternalOnEditClick(Sender: TObject);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user