Skip to content

Commit

Permalink
copy as text (unicode)
Browse files Browse the repository at this point in the history
  • Loading branch information
stevencohn committed May 4, 2024
1 parent 1755179 commit d933d21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OneMore/Commands/Edit/CopyAsTextCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public override async Task Execute(params object[] args)
}
}

var success = await new ClipboardProvider().SetText(builder.ToString());
var success = await new ClipboardProvider().SetText(builder.ToString(), true);
if (!success)
{
MoreMessageBox.ShowWarning(owner, Resx.Clipboard_locked);
Expand Down

0 comments on commit d933d21

Please sign in to comment.