mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-07-20 21:29:01 -04:00
Fix Quote Lines With Image
When get text with image from toPlainText(), a (-4) char is inserted.
This commit is contained in:
parent
70bf938654
commit
1d2be232f0
3 changed files with 3 additions and 1 deletions
|
@ -269,7 +269,7 @@ void MimeTextEdit::pasteOwnCertificateLink()
|
|||
|
||||
void MimeTextEdit::pastePlainText()
|
||||
{
|
||||
insertPlainText(QApplication::clipboard()->text());
|
||||
insertPlainText(QApplication::clipboard()->text().remove(QChar(-4)));//Char used when image on text.
|
||||
}
|
||||
|
||||
void MimeTextEdit::spoiler()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue