audioplayer: fix coordinates in hide() function

Origin commit data
------------------
Commit: 825b658197
Author: vanhofen <vanhofen@gmx.de>
Date: 2017-06-19 (Mon, 19 Jun 2017)

Origin message was:
------------------
- audioplayer: fix coordinates in hide() function
This commit is contained in:
vanhofen
2017-06-19 13:00:05 +02:00
parent 1cb4e06169
commit a3a26f9ecc

View File

@@ -1573,7 +1573,7 @@ void CAudioPlayerGui::hide()
if (m_visible) if (m_visible)
{ {
clearDetailsLine(); 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; m_visible = false;
} }
} }