Sdk/TextAreaWidget: Make cursor sprite black

This commit is contained in:
Lynix 2017-01-20 20:03:17 +01:00
parent cf286e0413
commit 174feda1e9
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ namespace Ndk
m_readOnly(false)
{
m_cursorSprite = Nz::Sprite::New();
m_cursorSprite->SetColor(Nz::Color(192, 192, 192));
m_cursorSprite->SetColor(Nz::Color::Black);
m_cursorSprite->SetSize(1.f, float(m_drawer.GetFont()->GetSizeInfo(m_drawer.GetCharacterSize()).lineHeight));
m_cursorEntity = CreateEntity();