1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-02-13 17:39:40 +00:00

Closes #1077: Replace tags before trying to get the message length

This commit is contained in:
scrawl 2014-01-09 22:17:51 +01:00
parent aa855e9524
commit 546b0cee76

View file

@ -63,7 +63,8 @@ namespace MWGui
{
MessageBox *box = new MessageBox(*this, message);
box->mCurrentTime = 0;
box->mMaxTime = message.length()*mMessageBoxSpeed;
std::string realMessage = MyGUI::LanguageManager::getInstance().replaceTags(message);
box->mMaxTime = realMessage.length()*mMessageBoxSpeed;
if(stat)
mStaticMessageBox = box;