SDK/TextAreaWidget: Fix cursor position after inserting special characters

This commit is contained in:
Lynix 2016-12-05 15:17:11 +01:00
parent 58866fd4ac
commit d6e02d486b
1 changed files with 1 additions and 1 deletions

View File

@ -233,7 +233,7 @@ namespace Ndk
currentText.Insert(m_cursorPosition, text);
SetText(currentText);
m_cursorPosition += text.GetSize();
m_cursorPosition += text.GetLength();
}
RefreshCursor();