Merge pull request #679 from acaruso-xx/mdtextarea-fix

[Loader] Correct rendering of soft line breaks in MDTextArea
This commit is contained in:
dankmeme01 2024-04-10 22:44:27 +02:00 committed by GitHub
commit 7986704b0d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -243,7 +243,7 @@ struct MDParser {
case MD_TEXTTYPE::MD_TEXT_SOFTBR:
{
renderer->breakLine();
renderer->renderString(" ");
}
break;