diff options
author | Kyuho Jo <kyuho.jo@samsung.com> | 2017-05-09 16:33:24 +0900 |
---|---|---|
committer | ChulSeung Kim <charles0.kim@samsung.com> | 2017-06-08 18:34:55 +0900 |
commit | d87feb1656ef9b681dba2954af9672ffe87415c8 (patch) | |
tree | 1a9f265dd66c2d5618c20f9229fc1982b91eb9c1 /TVHome | |
parent | 693685cff442b46dd7d0bb4f61d9b9409138b5fc (diff) | |
download | home-d87feb1656ef9b681dba2954af9672ffe87415c8.tar.gz home-d87feb1656ef9b681dba2954af9672ffe87415c8.tar.bz2 home-d87feb1656ef9b681dba2954af9672ffe87415c8.zip |
Align contents of recent tab
Signed-off-by: Kyuho Jo <kyuho.jo@samsung.com>
Change-Id: Ie88ca4b119516d1aebe9f4d0d90e4d2e549f9e8f
Diffstat (limited to 'TVHome')
-rwxr-xr-x | TVHome/TVHome/Views/SubThumbnailPanel.xaml.cs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/TVHome/TVHome/Views/SubThumbnailPanel.xaml.cs b/TVHome/TVHome/Views/SubThumbnailPanel.xaml.cs index 8f7acef..6a8c0c9 100755 --- a/TVHome/TVHome/Views/SubThumbnailPanel.xaml.cs +++ b/TVHome/TVHome/Views/SubThumbnailPanel.xaml.cs @@ -26,6 +26,7 @@ using Xamarin.Forms.PlatformConfiguration.TizenSpecific; namespace TVHome.Views { + using System.Threading; using Tizen = Xamarin.Forms.PlatformConfiguration.Tizen; /// <summary> /// SubThumnailPanel in Main Page for Recent @@ -145,6 +146,8 @@ namespace TVHome.Views isFocused = false; FocusPanel(); } + + PanelScrollView.ScrollToAsync(110, 0, false); } public IList<View> GetSubPanelButtons() @@ -171,9 +174,8 @@ namespace TVHome.Views { item.IsEnabled = false; } - #pragma warning disable CS4014 - PanelScrollView.ScrollToAsync(0, 0, true); + PanelScrollView.ScrollToAsync(110, 0, true); this.TranslateTo(0, selectTransitionHeight, 300); #pragma warning restore CS4014 await this.FadeTo(0, 300); @@ -197,7 +199,6 @@ namespace TVHome.Views { item.IsEnabled = true; } - #pragma warning disable CS4014 this.TranslateTo(0, 0, 300); #pragma warning restore CS4014 |