rename from update to check (#2505)

This commit is contained in:
Zach H 2017-03-18 18:46:19 -04:00 committed by GitHub
parent 2048aac387
commit 127a91147c
3 changed files with 7 additions and 7 deletions

View file

@ -185,12 +185,12 @@ QString TabRoom::sanitizeHtml(QString dirty) const
void TabRoom::sendMessage()
{
if (sayEdit->text().isEmpty()){
if (sayEdit->text().isEmpty()) {
return;
}else if (completer->popup()->isVisible()){
} else if (completer->popup()->isVisible()) {
completer->popup()->hide();
return;
}else{
} else {
Command_RoomSay cmd;
cmd.set_message(sayEdit->text().toStdString());