Refresh ContentInfo objects for any impacted by transition changes

This fixes a bug that if the contentInfo was not refreshed, it was not able to be edited.
This also causes ContentInfo's with Annotations to have the background color changed.
This commit is contained in:
Rich
2010-01-11 22:17:52 +00:00
parent cfb58493fa
commit ce4d28e0b9
@@ -321,6 +321,8 @@ namespace VEPROMS.CSLA.Library
content.FixTransitionText(tran);
if (content.IsDirty)
content.Save();
else // Update ContentInfo objects to reflect the change in the transition
ContentInfo.Refresh(content);
}
}
}