From 548a946de86e4766fe156691b13d745e0dc8b87c Mon Sep 17 00:00:00 2001 From: Deve Date: Sat, 9 Feb 2019 01:38:23 +0100 Subject: [PATCH] Clear message that chat is disabled when user enabled it in options --- src/states_screens/online/networking_lobby.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/states_screens/online/networking_lobby.cpp b/src/states_screens/online/networking_lobby.cpp index d8266d2f6..9fd156079 100644 --- a/src/states_screens/online/networking_lobby.cpp +++ b/src/states_screens/online/networking_lobby.cpp @@ -212,6 +212,7 @@ void NetworkingLobby::init() if (UserConfigParams::m_lobby_chat) { m_chat_box->addListener(this); + m_chat_box->setText(""); getWidget("chat")->setVisible(true); getWidget("chat")->setActive(true); getWidget("send")->setVisible(true);