IDE: closing the Run Parameters Dialog with OK sets the modified flag of the project (bug #7692)

git-svn-id: trunk@10374 -
This commit is contained in:
vincents 2007-01-04 22:23:57 +00:00
parent bd34c39c73
commit 44f00697d3

View File

@ -3276,7 +3276,8 @@ end;
procedure TMainIDE.mnuRunParametersClicked(Sender: TObject);
begin
ShowRunParamsOptsDlg(Project1.RunParameterOptions);
if ShowRunParamsOptsDlg(Project1.RunParameterOptions)=mrOK then
Project1.Modified:=true;
end;
//------------------------------------------------------------------------------