Page 1 of 1

Hide chat at startup via config

PostPosted: Sat Jan 25, 2014 00:58
by lightonflux
If you play singleplayer it very annoying if the chat is open and you see some lines about whatever.

Would be nice if there was an option in the config to hide the chat from start.

PostPosted: Sat Jan 25, 2014 05:38
by gsmanners
There's an idea. In fact, it would be pretty easy to implement:

game.cpp:
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
-    bool show_chat = true;

+    bool show_chat = g_settings->getBool("show_chat");


defaultsettings.cpp:
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
+    settings->setDefault("show_chat", "true");

PostPosted: Sat Jan 25, 2014 07:12
by LuxAtheris
Well F2 is useful