diff options
author | jmarshallnz <jmarshallnz@svn> | 2009-11-10 09:29:26 +0000 |
---|---|---|
committer | jmarshallnz <jmarshallnz@svn> | 2009-11-10 09:29:26 +0000 |
commit | d22fb27e521a50cb7f03b43f832af9f36ae4b420 (patch) | |
tree | b6f2a84c91baf95759ccd168ebcc904255daac0b /guilib/GUIEditControl.cpp | |
parent | 39ca03fed65d152ea2b3798045b103e98fcd1d3d (diff) |
fixed: Use transparent white for flashing cursors in the off state, rather than almost transparent black.
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@24488 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'guilib/GUIEditControl.cpp')
-rw-r--r-- | guilib/GUIEditControl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guilib/GUIEditControl.cpp b/guilib/GUIEditControl.cpp index 9e9262f056..8246dce882 100644 --- a/guilib/GUIEditControl.cpp +++ b/guilib/GUIEditControl.cpp @@ -412,9 +412,9 @@ void CGUIEditControl::RenderText() // virtual keyboard only) CStdStringW col; if ((m_focusCounter % 64) > 32) - col.Format(L"|"); + col = L"|"; else - col.Format(L"[COLOR %x]|[/COLOR]", 0x1000000); + col = L"[COLOR 00FFFFFF]|[/COLOR]"; text.Insert(m_cursorPos, col); } |