From 13e1fde9de71e88b42d988bec91fd1938ec6006e Mon Sep 17 00:00:00 2001 From: Hyerim Kim Date: Wed, 27 Sep 2017 14:27:15 +0900 Subject: [PATCH] Fixed self verification issue : TPLAPP-3989 Change-Id: I4efd1488e14c380f50e725cc409a34cc9e11510a Signed-off-by: Hyerim Kim --- TVApps/TVApps/Controls/AppListView.xaml.cs | 4 ++-- 1 file 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; -- 2.34.1