mirror of
https://github.com/vcmi/vcmi.git
synced 2025-08-10 22:31:40 +02:00
fixes string colorisation bug
This commit is contained in:
@@ -130,7 +130,11 @@ std::vector<std::string> CMessage::breakText(std::string text, size_t maxLineWid
|
|||||||
if(currPos < text.length() && (text[currPos] != 0x0a))
|
if(currPos < text.length() && (text[currPos] != 0x0a))
|
||||||
{
|
{
|
||||||
if(wordBreak != ui32(-1))
|
if(wordBreak != ui32(-1))
|
||||||
|
{
|
||||||
currPos = wordBreak;
|
currPos = wordBreak;
|
||||||
|
if(text.substr(0, currPos).find('{') == std::string::npos)
|
||||||
|
opened = false;
|
||||||
|
}
|
||||||
else
|
else
|
||||||
currPos -= symbolSize;
|
currPos -= symbolSize;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user