Compare commits

..

No commits in common. "218a2c17a2bf2cbb9762ff775d68af3292b7fcfc" and "bf5337cf63fb19ad1c22bc1e51e3878f95c81f61" have entirely different histories.

View File

@ -674,15 +674,12 @@ namespace Volian.Controls.Library
{ {
using (Annotation annotation = CurrentAnnotation.Get()) using (Annotation annotation = CurrentAnnotation.Get())
{ {
if (annotation != null) // B2024-061 check for null reference annotation.RtfText = rtxbComment.Rtf;
{ annotation.SearchText = rtxbComment.Text;
annotation.RtfText = rtxbComment.Rtf; annotation.MyAnnotationType = annotationType;
annotation.SearchText = rtxbComment.Text; annotation.DTS = DateTime.Now;
annotation.MyAnnotationType = annotationType; annotation.UserID = Volian.Base.Library.VlnSettings.UserID;
annotation.DTS = DateTime.Now; annotation.Save();
annotation.UserID = Volian.Base.Library.VlnSettings.UserID;
annotation.Save();
}
} }
} }
} }