B2019-029: When a new annotation is created, unless you press save, it isn’t saved. The first fix caused a dialog to come up repeatedly for when save is selected. There is no longer a dialog and this was fixed with this update

This commit is contained in:
2019-03-28 14:35:21 +00:00
parent 389250bad3
commit a9ad0ed12a
5 changed files with 79 additions and 74 deletions

View File

@@ -798,6 +798,12 @@ namespace Volian.Controls.Library
}
#endregion
#region Public Properties
private AnnotationDetails _MyAnnotationDetails;
public AnnotationDetails MyAnnotationDetails // B2019-029: added to find annotation details for saving w/o btnsave click
{
get { return _MyAnnotationDetails; }
set { _MyAnnotationDetails = value; }
}
private SessionInfo _MySessionInfo;
public SessionInfo MySessionInfo
{