mirror of https://gitlab.com/basile.b/dexed.git
reload project persistent env even if it's in a group
This commit is contained in:
parent
6db535128c
commit
790960e292
|
@ -846,7 +846,6 @@ begin
|
|||
fHasLoaded := true;
|
||||
|
||||
updateFields;
|
||||
if not inGroup then
|
||||
restorePersistentMetadata();
|
||||
|
||||
subjProjChanged(fProjectSubject, self);
|
||||
|
@ -967,6 +966,8 @@ begin
|
|||
LoadFromFile(f);
|
||||
except
|
||||
end;
|
||||
if not inGroup then
|
||||
begin
|
||||
t := values['last_dexed_buildType'];
|
||||
c := values['last_dexed_config'];
|
||||
if t.isNotEmpty and c.isNotEmpty then
|
||||
|
@ -976,6 +977,7 @@ begin
|
|||
setActiveConfigurationIndex(i);
|
||||
break;
|
||||
end;
|
||||
end;
|
||||
fMetaEnv.Clear;
|
||||
fMetaEnv.AddText(values['project_environment_vars']);
|
||||
finally
|
||||
|
|
Loading…
Reference in New Issue