|
@@ -1081,7 +1081,7 @@ namespace PDF_Master.ViewModels.Tools
|
|
|
var annot = menu.Parameter as AnnotHandlerEventArgs;
|
|
|
if (annot != null)
|
|
|
{
|
|
|
- System.Windows.Clipboard.SetText(annot.Content);
|
|
|
+ System.Windows.Clipboard.SetText(annot.MarkupContent);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -1253,7 +1253,9 @@ namespace PDF_Master.ViewModels.Tools
|
|
|
{
|
|
|
StickyAnnotArgs annotArgs = new StickyAnnotArgs()
|
|
|
{
|
|
|
- Color = stickyAnnotArgs.Color
|
|
|
+ Color = stickyAnnotArgs.Color,
|
|
|
+ IconName = stickyAnnotArgs.IconName,
|
|
|
+ Transparency = stickyAnnotArgs.Transparency,
|
|
|
};
|
|
|
|
|
|
PDFViewer.SetToolParam(annotArgs);
|