From 7cc94d06173ef764e45f2741081c45977f914bd9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Leclercq?= Date: Thu, 12 Apr 2018 13:41:30 +0200 Subject: [PATCH] Sdk/Console: Fix merge issue --- SDK/src/NDK/Console.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SDK/src/NDK/Console.cpp b/SDK/src/NDK/Console.cpp index b1d302d68..8d3992868 100644 --- a/SDK/src/NDK/Console.cpp +++ b/SDK/src/NDK/Console.cpp @@ -68,7 +68,7 @@ namespace Ndk m_input->OnTextAreaKeyBackspace.Connect([](const TextAreaWidget* textArea, bool* ignoreDefaultAction) { - if (textArea->GetGlyphUnderCursor() <= s_inputPrefixSize) + if (textArea->GetGlyphIndex() <= s_inputPrefixSize) *ignoreDefaultAction = true; });