diff --git a/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/ROEditor.cs b/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/ROEditor.cs index bdfb3d0f..de89cfe9 100644 --- a/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/ROEditor.cs +++ b/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/ROEditor.cs @@ -1154,7 +1154,10 @@ namespace ROEditor tbtnCancel.Enabled = true; tbtnSave.Enabled = true; tbtnRestore.Enabled = true; - tbtnSaveAs.Enabled = true; + if (newone == null) + { tbtnSaveAs.Enabled = true; } + else + { tbtnSaveAs.Enabled = false; } } menuROSave.Enabled = tbtnSave.Enabled; } @@ -1170,7 +1173,10 @@ namespace ROEditor tbtnSave.Enabled = true; tbtnRestore.Enabled = true; - tbtnSaveAs.Enabled = true; + if (newone == null) + { tbtnSaveAs.Enabled = true; } + else + { tbtnSaveAs.Enabled = false; } tbtnCancel.Enabled = true; menuROSave.Enabled = tbtnSave.Enabled; //B2021-080 set the mysavexml flag to true to ensure the text change will be saved