Development #454

Merged
djankowski merged 6 commits from Development into master 2024-11-01 14:18:01 -04:00
Showing only changes of commit 2cf164c445 - Show all commits

View File

@ -1251,6 +1251,9 @@ namespace ROEditor
{
tbMenuVal.Text = tbMenuVal.Text.Replace($"<{origname}>", $"<{newname}>");
tbRetVal.Text = tbRetVal.Text.Replace($"<{origname}>", $"<{newname}>");
//CSM-C2024-035 This is needed for items like Setpoint Value that may have commas with field lengths in them
tbMenuVal.Text = tbMenuVal.Text.Replace($"<{origname},", $"<{newname},");
tbRetVal.Text = tbRetVal.Text.Replace($"<{origname},", $"<{newname},");
}
}
else