Set recent played content's time with UTC time
authorHyerim Kim <rimi.kim@samsung.com>
Thu, 11 May 2017 06:58:15 +0000 (15:58 +0900)
committerChulSeung Kim <charles0.kim@samsung.com>
Thu, 8 Jun 2017 09:34:56 +0000 (18:34 +0900)
Changes SubPanel's Opacity

Change-Id: Icf031b47dc3f78c19dde8fb29aae0bbe07c9546c
Signed-off-by: Hyerim Kim <rimi.kim@samsung.com>
LibTVRefCommonPortable/Models/RecentShortcutController.cs
TVHome/TVHome/Views/SubPanel.xaml.cs
TVHome/TVHome/Views/SubThumbnailPanel.xaml.cs

index 5cd8496..0e67019 100755 (executable)
@@ -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);
             }
 
index 8692bd6..0965667 100755 (executable)
@@ -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);
         }
 
         /// <summary>
@@ -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);
         }
 
         /// <summary>
index 383dd8c..31da965 100755 (executable)
@@ -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