Merged revision(s) 52756 #33b941d450 from trunk:

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

git-svn-id: branches/fixes_1_6@52888 -
This commit is contained in:
maxim 2016-08-29 22:06:35 +00:00
parent 26047b704a
commit fa82812d16

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;