|
@@ -79,7 +79,7 @@ namespace ComPDFKit.Tool
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- public void CleanEditAnnot()
|
|
|
+ public void CleanEditAnnot(bool isDrawEditAnnot = false)
|
|
|
{
|
|
|
Point point = Mouse.GetPosition(this);
|
|
|
BaseLayer baseLayer = PDFViewer.GetViewForTag(annotEditViewTag);
|
|
@@ -87,9 +87,10 @@ namespace ComPDFKit.Tool
|
|
|
if (annotEdit != null)
|
|
|
{
|
|
|
annotEdit.ClearDraw();
|
|
|
- IsDrawEditAnnot = false;
|
|
|
+ IsDrawEditAnnot = isDrawEditAnnot;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
|
|
|
private void DrawEditAnnotLayer()
|
|
|
{
|