mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-29 12:30:36 +02:00
IDE: do not use Show if only making visible
git-svn-id: trunk@26136 -
This commit is contained in:
parent
326f2795bd
commit
fd4c367e8d
@ -876,7 +876,7 @@ begin
|
||||
if (AForm.WindowState in [wsNormal,wsMaximized]) and BringToFront then
|
||||
AForm.ShowOnTop
|
||||
else
|
||||
AForm.Show;
|
||||
AForm.Visible:=true;
|
||||
end;
|
||||
end;
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user