From: Hyerim Kim Date: Thu, 11 May 2017 06:58:15 +0000 (+0900) Subject: Set recent played content's time with UTC time X-Git-Tag: submit/tizen/20170808.015446~36 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=31abf1e66011c2f9e66b72d022fc2cf8129054b8;p=profile%2Ftv%2Fapps%2Fdotnet%2Fhome.git Set recent played content's time with UTC time Changes SubPanel's Opacity Change-Id: Icf031b47dc3f78c19dde8fb29aae0bbe07c9546c Signed-off-by: Hyerim Kim --- diff --git a/LibTVRefCommonPortable/Models/RecentShortcutController.cs b/LibTVRefCommonPortable/Models/RecentShortcutController.cs index 5cd8496..0e67019 100755 --- a/LibTVRefCommonPortable/Models/RecentShortcutController.cs +++ b/LibTVRefCommonPortable/Models/RecentShortcutController.cs @@ -202,7 +202,7 @@ namespace LibTVRefCommonPortable.Models recentShortcutInfo.StateDescriptions.Add("default", defaultStateDescription); recentShortcutInfo.CurrentStateDescription = defaultStateDescription; recentShortcutInfo.Id = "org.tizen.xamediahub"; - recentShortcutInfo.Date = item.PlayedAt; + recentShortcutInfo.Date = item.PlayedAt.ToUniversalTime(); recentShortcutInfoList.Add(recentShortcutInfo); } diff --git a/TVHome/TVHome/Views/SubPanel.xaml.cs b/TVHome/TVHome/Views/SubPanel.xaml.cs index 8692bd6..0965667 100755 --- a/TVHome/TVHome/Views/SubPanel.xaml.cs +++ b/TVHome/TVHome/Views/SubPanel.xaml.cs @@ -280,7 +280,7 @@ namespace TVHome.Views this.TranslateTo(0, 0, 300); #pragma warning restore CS4014 - await this.FadeTo(0.3, 300); + await this.FadeTo(1, 300); } /// @@ -314,7 +314,6 @@ namespace TVHome.Views #pragma warning disable CS4014 this.TranslateTo(0, -selectTransitionHeight, 300); #pragma warning restore CS4014 - await this.FadeTo(0.99, 300); } /// diff --git a/TVHome/TVHome/Views/SubThumbnailPanel.xaml.cs b/TVHome/TVHome/Views/SubThumbnailPanel.xaml.cs index 383dd8c..31da965 100755 --- a/TVHome/TVHome/Views/SubThumbnailPanel.xaml.cs +++ b/TVHome/TVHome/Views/SubThumbnailPanel.xaml.cs @@ -208,7 +208,7 @@ namespace TVHome.Views if (NoContentInfo.IsVisible) { NoContentInfo.IsEnabled = false; - await this.FadeTo(0.8, 0); + await this.FadeTo(1, 0); } else { @@ -220,7 +220,7 @@ namespace TVHome.Views #pragma warning disable CS4014 this.TranslateTo(0, 0, 300); #pragma warning restore CS4014 - await this.FadeTo(0.3, 300); + await this.FadeTo(1, 300); } } @@ -244,7 +244,6 @@ namespace TVHome.Views #pragma warning disable CS4014 this.TranslateTo(0, -selectTransitionHeight, 300); #pragma warning restore CS4014 - await this.FadeTo(0.99, 300); } } } \ No newline at end of file