ApplicationProperties: fix setting ExceptionDialog in OI. Issue #0030210.

git-svn-id: trunk@52756 -
This commit is contained in:
bart 2016-07-31 14:11:37 +00:00
parent 5f55a00ead
commit 33b941d450

View File

@ -71,6 +71,8 @@ procedure TApplicationProperties.SetExceptionDialog(
begin
if FExceptionDialogType=AValue then
Exit;
FExceptionDialogType := AValue;
if not (csDesigning in ComponentState) then
Application.ExceptionDialog := AValue;
end;