From 6fb44796a0ca24f1d24c9e4ca9eb8f234f0566c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Leclercq?= Date: Thu, 12 Apr 2018 13:41:48 +0200 Subject: [PATCH] Sdk/Console: Fix SetCharacterSize not updating character size --- SDK/src/NDK/Console.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/SDK/src/NDK/Console.cpp b/SDK/src/NDK/Console.cpp index 8d3992868..184d6e9d2 100644 --- a/SDK/src/NDK/Console.cpp +++ b/SDK/src/NDK/Console.cpp @@ -135,10 +135,8 @@ namespace Ndk { m_characterSize = size; - //m_historyDrawer.SetCharacterSize(m_characterSize); - //m_historyTextSprite->Update(m_historyDrawer); - //m_inputDrawer.SetCharacterSize(m_characterSize); - //m_inputTextSprite->Update(m_inputDrawer); + m_history->SetCharacterSize(size); + m_input->SetCharacterSize(size); Layout(); }