textbox.cpp: check for pix buffer content first for shure

This commit is contained in:
2019-04-28 16:51:49 +02:00
parent d1699ac2b4
commit aedf686fe7

View File

@@ -607,8 +607,9 @@ void CTextBox::refreshText(void)
if (has_changed)
clearScreenBuffer();
if(m_bgpixbuf && (m_old_cText != m_cText))
frameBuffer->RestoreScreen(m_old_x, m_old_y, m_old_dx, m_old_dy, m_bgpixbuf);
if(m_bgpixbuf)
if (m_old_cText != m_cText)
frameBuffer->RestoreScreen(m_old_x, m_old_y, m_old_dx, m_old_dy, m_bgpixbuf);
if (m_bgpixbuf){
frameBuffer->RestoreScreen(m_old_x, m_old_y, m_old_dx, m_old_dy, m_bgpixbuf);