mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-29 16:31:11 +02:00
CTextBox: try to fix possible background artefacts in transparent mode
supplement to: - textbox: fix box width in round corners mode Radius was always subtracted in all text modes. TODO: value of m_nBgRadius itself is not considered at the moment.
This commit is contained in:
@@ -588,7 +588,7 @@ void CTextBox::refreshText(void)
|
||||
//bg variables
|
||||
int ax = m_cFrameTextRel.iX+m_cFrame.iX;
|
||||
int ay = m_cFrameTextRel.iY+m_cFrame.iY;
|
||||
int dx = m_old_cText != m_cText || m_nNrOfPages>1 ? m_cFrameTextRel.iWidth : m_nMaxTextWidth - m_nBgRadius;
|
||||
int dx = m_old_cText != m_cText || m_nNrOfPages>1 ? m_cFrameTextRel.iWidth : m_nMaxTextWidth - (m_nMode & SCROLL ? m_nBgRadius : 0);
|
||||
int dy = m_cFrameTextRel.iHeight;
|
||||
|
||||
//avoid artefacts in transparent cornes
|
||||
|
Reference in New Issue
Block a user