Browse Source

"%user is typing..." -> "%user ..."

pull/974/head
krepa098 11 years ago
parent
commit
882d19d311
  1. 2
      src/widget/form/chatform.cpp

2
src/widget/form/chatform.cpp

@ -887,7 +887,7 @@ void ChatForm::setFriendTyping(bool isTyping)
Text* text = dynamic_cast<Text*>(chatWidget->getTypingNotification()->getContent(1)); Text* text = dynamic_cast<Text*>(chatWidget->getTypingNotification()->getContent(1));
if(text) if(text)
text->setText("<div class=typing>" + tr("%1 is typing...").arg(f->getDisplayedName()) + "</div>"); text->setText("<div class=typing>" + QString("%1 ...").arg(f->getDisplayedName()) + "</div>");
} }
void ChatForm::clearReciepts() void ChatForm::clearReciepts()

Loading…
Cancel
Save