[DEV] change color of the selection of the Entry widget

This commit is contained in:
Edouard DUPIN 2012-10-24 17:08:06 +02:00
parent eccc2d69d7
commit 5b0807d3dd

View File

@ -186,7 +186,7 @@ void ewol::Entry::OnRegenerateDisplay(void)
int32_t XPosEnd = maxSize.x + m_borderSize + 2*m_paddingSize + m_displayStartPosition;
XPos = etk_avg(m_borderSize + 2*m_paddingSize, XPos, m_size.x - 2*m_paddingSize );
XPosEnd = etk_avg(m_borderSize + 2*m_paddingSize, XPosEnd, m_size.x - 2*m_paddingSize );
m_oObjectDecoration.SetColor(0xFF0000FF);
m_oObjectDecoration.SetColor(0x4444FFAA);
m_oObjectDecoration.Rectangle( XPos, tmpTextOriginY, XPosEnd-XPos, maxSize.y);
m_oObjectDecoration.clippingDisable();
}