LCL: Don't call EditButton.EditChange while component is loading.

git-svn-id: trunk@49234 -
This commit is contained in:
juha 2015-05-31 17:13:15 +00:00
parent 255bf5782e
commit abdada70fe

View File

@ -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);