|
@@ -377,6 +377,7 @@ namespace FurnaceUI.Views.Recipes
|
|
|
|
|
|
public object View { get; set; }
|
|
|
|
|
|
+ private string _prefix;
|
|
|
private string _SelectRecipeTypeName;
|
|
|
|
|
|
public string SelectRecipeTypeName
|
|
@@ -399,6 +400,8 @@ namespace FurnaceUI.Views.Recipes
|
|
|
{
|
|
|
base.OnInitialize();
|
|
|
InitializeDefault();
|
|
|
+
|
|
|
+ _prefix = CurrentChamberType + "\\" + CurrentProcessType;// + "\\" + filepath;
|
|
|
}
|
|
|
|
|
|
|
|
@@ -593,14 +596,11 @@ namespace FurnaceUI.Views.Recipes
|
|
|
}
|
|
|
|
|
|
|
|
|
- if (node != null && node.IsFile)
|
|
|
- {
|
|
|
-
|
|
|
- }
|
|
|
- else
|
|
|
+ if (node != null && !node.IsFile)
|
|
|
{
|
|
|
InitializeDefault(false);
|
|
|
}
|
|
|
+
|
|
|
if (node != null && !node.IsFile)
|
|
|
{
|
|
|
ProcessTypeFileList[0].FileListByProcessType.ForEachDo(a =>
|