MediaPortal Version: all SVNs from 14663
MediaPortal Skin: Blue Two
If AudioPlayerWMP9 switched from FullScreen to Overlay Window, in OverlayWindow showed only Black rectangle.
problem in this function
static public bool Overlay
{
get { return m_bOverlay; }
set
{
m_bOverlay = value;
// this line introduced in revision 14678
if (!m_bOverlay) { m_RectVideo.Width = 1; m_RectVideo.Height = 1; }
if (!ShowBackground) m_bOverlay = false;
if (OnVideoWindowChanged != null)
{ OnVideoWindowChanged(); }
}
}
Without selected line, OverlayWindow will show rectangle with Video
MediaPortal Skin: Blue Two
If AudioPlayerWMP9 switched from FullScreen to Overlay Window, in OverlayWindow showed only Black rectangle.
problem in this function
static public bool Overlay
{
get { return m_bOverlay; }
set
{
m_bOverlay = value;
// this line introduced in revision 14678
if (!m_bOverlay) { m_RectVideo.Width = 1; m_RectVideo.Height = 1; }
if (!ShowBackground) m_bOverlay = false;
if (OnVideoWindowChanged != null)
{ OnVideoWindowChanged(); }
}
}
Without selected line, OverlayWindow will show rectangle with Video