Fixed the key to delete profiles on
Added fire and forget for task Added WaitUntil function on Automation Runner Added some documentation
This commit is contained in:
parent
b9b2f93dcc
commit
9b2dbdcfe3
2 changed files with 4 additions and 3 deletions
|
|
@ -445,6 +445,7 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
|
|||
|
||||
[JsonProperty(PropertyName = "ID")]
|
||||
private string id;
|
||||
|
||||
[JsonIgnore]
|
||||
public string ID
|
||||
{
|
||||
|
|
@ -462,12 +463,12 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
|
|||
if (File.Exists(existingProfilePath))
|
||||
{
|
||||
// Profile ID change must come after existingProfilePath calculation and before ProfilePath getter
|
||||
this.ID = value;
|
||||
this.id = value;
|
||||
File.Move(existingProfilePath, ProfilePath);
|
||||
}
|
||||
else
|
||||
{
|
||||
this.ID = value;
|
||||
this.id = value;
|
||||
}
|
||||
|
||||
if (File.Exists(ProfilePath))
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit 77d623e2ac17051e7a231c1ac665f93b21fad88b
|
||||
Subproject commit 369476aada4201e57e2443716f29225398f2f185
|
||||
Loading…
Add table
Add a link
Reference in a new issue