fix, reload last proj and docs, projet config index not handled

This commit is contained in:
Basile Burg 2022-05-14 12:21:17 +02:00
parent 311d6a7d1a
commit 04100589e5
3 changed files with 10 additions and 1 deletions

View File

@ -3,11 +3,12 @@
## Enhancements
- Search and Replace: after a failed search give the editor the focus back.
- It's possible to open ".mak" or "makefile" files as projects. The project inspector will display the rules as configurations and display the content of "src", "include", "import" as source files.
- It's possible to open ".mak" or "makefile" files as projects. The project inspector will display the rules as configurations and the content of "src/", "include/", "import/" as source files.
## Bugs fixed
- Crash to desktop for certain invalid or incomplete D constructs. (#107)
- Project configuration index not handled with option "reloadLastDocuments".
## Other

View File

@ -12,6 +12,7 @@ object MainForm: TMainForm
OnDropFiles = FormDropFiles
OnResize = FormResize
ShowHint = True
LCLVersion = '2.2.0.4'
object mainMenu: TMainMenu
Top = 1
object MenuItem1: TMenuItem

View File

@ -591,6 +591,7 @@ type
fDocIndex: integer;
fProjectGroup: string;
fProjectIndex: integer;
fProjectConfigIndex: integer;
procedure setDocuments(value: TStringList);
protected
procedure beforeSave; override;
@ -601,6 +602,7 @@ type
property project: string read fProjName write fProjName;
property projectGroup: string read fProjectGroup write fProjectGroup;
property projectIndex: integer read fProjectIndex write fProjectIndex;
property projectConfigIndex: integer read fProjectConfigIndex write fProjectConfigIndex;
public
constructor create(aOwner: TComponent); override;
destructor destroy; override;
@ -1066,7 +1068,10 @@ begin
pix := grp.reloadedProjectIndex;
prj := MainForm.fFreeProj;
if prj.isAssigned then
begin
fProjName := prj.filename;
fProjectConfigIndex := prj.getActiveConfigurationIndex;
end;
fProjectGroup := getProjectGroup.groupFilename;
if prj = MainForm.fProj then
fProjectIndex := -1
@ -1118,6 +1123,8 @@ begin
grp.setProjectIndex(fProjectIndex);
grp.getProject(grp.getProjectIndex).activate;
end;
if assigned(dst.fProj) then
dst.fProj.setActiveConfigurationIndex(fProjectConfigIndex);
end
else inherited;
end;