Skip to content

Commit

Permalink
MP1-5011: No version on FullScreen splash window (DWHD)
Browse files Browse the repository at this point in the history
MP1-5011
  • Loading branch information
andrewjswan authored and Azzuro committed Apr 16, 2020
1 parent 11e5a3e commit 72e12d1
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 11 deletions.
2 changes: 2 additions & 0 deletions mediaportal/MediaPortal.Application/FullScreenSplashScreen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,8 @@ private void ReadSplashScreenXML()
}
if (needInvalidate)
{
lblVersion.Parent = pbBackground;
lblCVS.Parent = pbBackground;
this.Invalidate(true);
}
}
Expand Down
22 changes: 11 additions & 11 deletions mediaportal/MediaPortal.Application/SplashScreen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -249,17 +249,17 @@ private void ShowNormalSplash()
/// </summary>
private void ShowFullScreenSplashScreen()
{
Cursor.Hide();
_frmFull = new FullScreenSplashScreen();
_frmFull.RetrieveSplashScreenInfo();
_frmFull.TopMost = _alwaysOnTop;
_frmFull.Bounds = CurrentDisplay.Bounds;
_frmFull.lblMain.Parent = _frmFull.pbBackground;
_frmFull.lblVersion.Parent = _frmFull.lblMain;
_frmFull.lblCVS.Parent = _frmFull.lblMain;
_frmFull.SetVersion(Version);
_frmFull.Show();
_frmFull.Update();
Cursor.Hide();
_frmFull = new FullScreenSplashScreen();
_frmFull.TopMost = _alwaysOnTop;
_frmFull.Bounds = CurrentDisplay.Bounds;
_frmFull.lblMain.Parent = _frmFull.pbBackground;
_frmFull.lblVersion.Parent = _frmFull.lblMain;
_frmFull.lblCVS.Parent = _frmFull.lblMain;
_frmFull.RetrieveSplashScreenInfo();
_frmFull.SetVersion(Version);
_frmFull.Show();
_frmFull.Update();
_frmFull.Opacity = 100;

string oldInfo = null;
Expand Down

0 comments on commit 72e12d1

Please sign in to comment.