diff --git a/source/shared_lib/sources/graphics/font.cpp b/source/shared_lib/sources/graphics/font.cpp index 7e4902a30..4f066b25a 100644 --- a/source/shared_lib/sources/graphics/font.cpp +++ b/source/shared_lib/sources/graphics/font.cpp @@ -184,7 +184,7 @@ float FontMetrics::getHeight(const string &str) const { string FontMetrics::wordWrapText(string text, int maxWidth) { // Strip newlines from source - //replaceAll(text, "\n", " "); + replaceAll(text, "\n", " \n "); // Get all words (space separated text) vector words; @@ -195,13 +195,19 @@ string FontMetrics::wordWrapText(string text, int maxWidth) { for(unsigned int i = 0; i < words.size(); ++i) { string word = words[i]; - float wordWidth = this->getTextWidth(word); - if (lineWidth + wordWidth > maxWidth) { - wrappedText += "\n"; - lineWidth = 0; - } - lineWidth += wordWidth; - wrappedText += word + " "; + if(word=="\n"){ + wrappedText += word; + lineWidth = 0; + } + else { + float wordWidth = this->getTextWidth(word); + if (lineWidth + wordWidth > maxWidth) { + wrappedText += "\n"; + lineWidth = 0; + } + lineWidth += this->getTextWidth(word+" "); + wrappedText += word + " "; + } } return wrappedText;