audioplayer: fix coordinates in hide() function

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

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

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
vanhofen
2017-06-19 13:00:05 +02:00
parent 9b3a71b1f3
commit e9e0e3b497

View File

@@ -1573,7 +1573,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;
}
}