Sdk/Console: Fix merge issue

This commit is contained in:
Jérôme Leclercq
2018-04-12 13:41:30 +02:00
parent f44a4dd349
commit 7cc94d0617

View File

@@ -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;
});