diff options
author | Hyerim Kim <rimi.kim@samsung.com> | 2017-09-27 06:14:12 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@review.ap-northeast-2.compute.internal> | 2017-09-27 06:14:12 +0000 |
commit | a01cad46e8bf141b656f69eb5063351f7715d642 (patch) | |
tree | 2aa8679f03232e46c8fe3401d11c001a718a0432 | |
parent | b30e4a0a3348c98536b642a9a536c053cd70d4d3 (diff) | |
parent | 13e1fde9de71e88b42d988bec91fd1938ec6006e (diff) | |
download | home-a01cad46e8bf141b656f69eb5063351f7715d642.tar.gz home-a01cad46e8bf141b656f69eb5063351f7715d642.tar.bz2 home-a01cad46e8bf141b656f69eb5063351f7715d642.zip |
Merge "Fixed self verification issue : TPLAPP-3989" into tizen
-rwxr-xr-x | TVApps/TVApps/Controls/AppListView.xaml.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/TVApps/TVApps/Controls/AppListView.xaml.cs b/TVApps/TVApps/Controls/AppListView.xaml.cs index 36a5d56..8ab4e2d 100755 --- a/TVApps/TVApps/Controls/AppListView.xaml.cs +++ b/TVApps/TVApps/Controls/AppListView.xaml.cs @@ -189,11 +189,11 @@ namespace TVApps.Controls if (AppCount % 2 == 0) { - Device.BeginInvokeOnMainThread(() => AppUpperList.Children.Add(viewCell)); + AppUpperList.Children.Add(viewCell); } else { - Device.BeginInvokeOnMainThread(() => AppLowerList.Children.Add(viewCell)); + AppLowerList.Children.Add(viewCell); } AppCount = AppCount + 1; |