[FR] TextEditor::setTextToShowWhenEmpty(...) doesn't parse \n (it would be useful if it did)

Hi Juce team,

TextEditor::setTextToShowWhenEmpty(…) doesn’t seem to parse “\n” correctly (well it parses it as a tab)

textEditor->setMultiLine(true, true);
textEditor->setTextToShowWhenEmpty(“line\nline2”);

line1 and line2 are only shown with a tab in between.

(using JUCE 7.0.5)