audioplayer: fix coordinates in hide() function

Signed-off-by: Thilo Graf <dbt@novatux.de>


Origin commit data
------------------
Branch: ni/coolstream
Commit: cc42ee1e42
Author: vanhofen <vanhofen@gmx.de>
Date: 2017-06-19 (Mon, 19 Jun 2017)

Origin message was:
------------------
- audioplayer: fix coordinates in hide() function

Signed-off-by: Thilo Graf <dbt@novatux.de>


------------------
This commit was generated by Migit
This commit is contained in:
vanhofen
2017-06-19 13:00:05 +02:00
committed by Thilo Graf
parent 4f92e2ec9b
commit c291c4b3d8

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;
}
}