This commit is contained in:
Chloe 2025-04-05 16:55:32 -07:00
parent e81de5d805
commit f4140e51b3
No known key found for this signature in database
GPG key ID: D2D404DD810FE0E3

View file

@ -778,8 +778,7 @@ void MDTextArea::updateLabel() {
textContent = MDTextArea::translateNewlines(m_text);
// ery proofing...
std::regex colorRe("<c_>");
textContent = std::regex_replace(textContent, colorRe, "<c->");
textContent = utils::string::replace(textContent, "<c_>", "<c->");
}
}