diff --git a/SDK/src/NDK/Console.cpp b/SDK/src/NDK/Console.cpp index ae6461b83..31586d346 100644 --- a/SDK/src/NDK/Console.cpp +++ b/SDK/src/NDK/Console.cpp @@ -168,6 +168,12 @@ namespace Ndk void Console::SetCharacterSize(unsigned int size) { m_characterSize = size; + + m_historyDrawer.SetCharacterSize(m_characterSize); + m_historyTextSprite->Update(m_historyDrawer); + m_inputDrawer.SetCharacterSize(m_characterSize); + m_inputTextSprite->Update(m_inputDrawer); + Layout(); }