Initialize all buffers of the chat visualisation. */
| 106 | |
| 107 | /** Initialize all buffers of the chat visualisation. */ |
| 108 | void NetworkInitChatMessage() |
| 109 | { |
| 110 | MAX_CHAT_MESSAGES = _settings_client.gui.network_chat_box_height; |
| 111 | |
| 112 | _chatmsg_list.clear(); |
| 113 | _chatmsg_box.x = ScaleGUITrad(10); |
| 114 | _chatmsg_box.width = _settings_client.gui.network_chat_box_width_pct * _screen.width / 100; |
| 115 | NetworkReInitChatBoxSize(); |
| 116 | _chatmessage_visible = false; |
| 117 | } |
| 118 | |
| 119 | /** Hide the chatbox */ |
| 120 | void NetworkUndrawChatMessage() |
no test coverage detected