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

actorid
scrawl 11 years ago
parent aa855e9524
commit 546b0cee76

@ -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;

Loading…
Cancel
Save