mirror of https://gitlab.com/basile.b/dexed.git
fix patch message always shown
This commit is contained in:
parent
6550dec0c4
commit
5dd9f2aff4
|
@ -742,7 +742,7 @@ end;
|
|||
|
||||
procedure TDebugOpts.updateForceDbgBool;
|
||||
begin
|
||||
fForceDbgBool := (fDbgLevel > 0) or (fDbgIdents.Count > 0);
|
||||
fForceDbgBool := (fDbgLevel > 0) or (fDbgIdents.Count > 0);
|
||||
if fForceDbgBool then setDbg(true);
|
||||
end;
|
||||
|
||||
|
|
|
@ -344,10 +344,12 @@ procedure TCEProject.afterLoad;
|
|||
var
|
||||
i, j: Integer;
|
||||
src, ini, newdir: string;
|
||||
hasPatched: boolean;
|
||||
begin
|
||||
patchPlateformPaths(fSrcs);
|
||||
doChanged;
|
||||
fModified := false;
|
||||
hasPatched := false;
|
||||
|
||||
// patch location: this only works when the project file is moved.
|
||||
// if the source structure changes this doesn't help much.
|
||||
|
@ -380,13 +382,16 @@ begin
|
|||
fSrcs.Strings[j] := ExtractRelativepath(fBasePath, newdir + DirectorySeparator + src)
|
||||
else break; // next pass: patch from another folder.
|
||||
end;
|
||||
hasPatched := true;
|
||||
end;
|
||||
//
|
||||
saveToFile(fFilename);
|
||||
// warning for other relative paths
|
||||
if fileExists(getAbsoluteSourceName(0)) then
|
||||
ce_common.dlgOkInfo('the main sources paths has been patched, some others invalid ' +
|
||||
'paths may still exists (-of, -od, etc.) but cannot be automatically handled');
|
||||
if hasPatched then begin
|
||||
saveToFile(fFilename);
|
||||
// warning for other relative paths
|
||||
if fileExists(getAbsoluteSourceName(0)) then
|
||||
ce_common.dlgOkInfo('the main sources paths has been patched, some others invalid ' +
|
||||
'paths may still exists (-of, -od, etc.) but cannot be automatically handled');
|
||||
end;
|
||||
end;
|
||||
|
||||
procedure TCEProject.readerPropNoFound(Reader: TReader; Instance: TPersistent;
|
||||
|
|
Loading…
Reference in New Issue