Archived
1
0

#225, 223: Fixed

This commit is contained in:
Michael Gordeev
2018-12-14 13:35:33 +03:00
parent 7597981420
commit 01d7677803
2 changed files with 8 additions and 5 deletions
+7 -4
View File
@@ -414,10 +414,11 @@ namespace FoxTube
nav.ExpandedModeThresholdWidth = short.MaxValue;
nav.OpenPaneLength = 0;
nav.CompactPaneLength = 0;
if ((videoPlaceholder.Content as VideoPage).player.MiniView)
nav.Margin = new Thickness(0, -48, 0, 0);
/*if ((videoPlaceholder.Content as VideoPage).player.MiniView)
nav.Margin = new Thickness(0, -46, 0, 0);
else
nav.Margin = new Thickness(0, -50, 0, 0);
nav.Margin = new Thickness(0, -48, 0, 0);*/
nav.Margin = new Thickness(0, -45, 0, 0);
}
else
{
@@ -426,7 +427,9 @@ namespace FoxTube
nav.ExpandedModeThresholdWidth = 1008;
nav.Margin = new Thickness(0);
nav.OpenPaneLength = 300;
nav.CompactPaneLength = 48;
nav.CompactPaneLength = 40;
if (videoPlaceholder.Content != null)
nav.IsPaneOpen = false;
SetTitleBar();
}
}