RichEdit: 'Paste plain text' -> 'Paste without formatting'

This commit is contained in:
Mirek Fidler 2023-08-06 17:25:56 +02:00
parent c1f441032c
commit a16cfe08ea

View file

@ -319,7 +319,7 @@ void RichEdit::PasteTool(Bar& bar, dword key)
void RichEdit::PastePlainTextTool(Bar& bar, dword key)
{
bar.Add(!IsReadOnly() && IsClipboardAvailableText(), "Paste plain text..", [=] {
bar.Add(!IsReadOnly() && IsClipboardAvailableText(), t_("Paste without formating"), [=] {
useraction = true;
PasteText(AsRichText(ReadClipboardUnicodeText(), GetFormatInfo()));
})