mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-07-12 05:21:47 +00:00
FIX(Client): Allow Colors to be input from chat window (#69)
* Fix(Client): Proper fix for not showing text colors in chat
This commit is contained in:
parent
3c9fe54282
commit
ecb053863b
1 changed files with 3 additions and 3 deletions
|
@ -72,7 +72,7 @@ namespace mwmp
|
||||||
|
|
||||||
void GUIChat::acceptCommand(MyGUI::EditBox *_sender)
|
void GUIChat::acceptCommand(MyGUI::EditBox *_sender)
|
||||||
{
|
{
|
||||||
const std::string &cm = MyGUI::TextIterator::toTagsString(mCommandLine->getCaption());
|
const std::string &cm = mCommandLine->getOnlyText();
|
||||||
|
|
||||||
// If they enter nothing, then it should be canceled.
|
// If they enter nothing, then it should be canceled.
|
||||||
// Otherwise, there's no way of closing without having text.
|
// Otherwise, there's no way of closing without having text.
|
||||||
|
@ -97,7 +97,7 @@ namespace mwmp
|
||||||
// during the actual command execution
|
// during the actual command execution
|
||||||
mCommandLine->setCaption("");
|
mCommandLine->setCaption("");
|
||||||
setEditState(false);
|
setEditState(false);
|
||||||
send (cm);
|
send(cm);
|
||||||
}
|
}
|
||||||
|
|
||||||
void GUIChat::onResChange(int width, int height)
|
void GUIChat::onResChange(int width, int height)
|
||||||
|
|
Loading…
Reference in a new issue