| 220 | */ |
| 221 | |
| 222 | void Console::SetCharacterSize(unsigned int size) |
| 223 | { |
| 224 | m_characterSize = size; |
| 225 | |
| 226 | m_historyDrawer.SetCharacterSize(m_characterSize); |
| 227 | m_historyTextSprite->Update(m_historyDrawer); |
| 228 | m_inputDrawer.SetCharacterSize(m_characterSize); |
| 229 | m_inputTextSprite->Update(m_inputDrawer); |
| 230 | |
| 231 | Layout(); |
| 232 | } |
| 233 | |
| 234 | /*! |
| 235 | * \brief Sets the console size |