IDE: do not use Show if only making visible

git-svn-id: trunk@26136 -
This commit is contained in:
mattias 2010-06-15 18:37:32 +00:00
parent 326f2795bd
commit fd4c367e8d
2 changed files with 2 additions and 2 deletions

View File

@ -876,7 +876,7 @@ begin
if (AForm.WindowState in [wsNormal,wsMaximized]) and BringToFront then
AForm.ShowOnTop
else
AForm.Show;
AForm.Visible:=true;
end;
end;

View File

@ -770,7 +770,7 @@ begin
else if BringToFront then
AForm.ShowOnTop
else
AForm.Show;
AForm.Visible:=true;
end;
function TIDEWindowCreatorList.ShowForm(AFormName: string; BringToFront: boolean