debugserver: fix stayontop setting

git-svn-id: trunk@21454 -
This commit is contained in:
paul 2009-08-26 15:11:57 +00:00
parent 28957ba8b8
commit f7e635d26e

View File

@ -484,7 +484,10 @@ end;
procedure TMainForm.SetStayOnTop(const AValue: Boolean);
begin
FormStyle:=fsStayOnTop;
if AValue then
FormStyle:=fsStayOnTop
else
FormStyle:=fsNormal;
end;
Const