- audioplayer: fix coordinates in hide() function

Signed-off-by: Thilo Graf <dbt@novatux.de>
This commit is contained in:
svenhoefer
2017-06-19 13:00:05 +02:00
committed by Thilo Graf
parent 26d1cb31fa
commit cc42ee1e42

View File

@@ -1537,7 +1537,7 @@ void CAudioPlayerGui::hide()
if (m_visible)
{
clearDetailsLine();
m_frameBuffer->paintBackgroundBoxRel(m_x, m_y, m_width, m_height);
m_frameBuffer->paintBackgroundBoxRel(m_x, m_y, m_width + OFFSET_SHADOW, m_height + OFFSET_SHADOW);
m_visible = false;
}
}