From: Hyerim Kim Date: Wed, 27 Sep 2017 05:27:15 +0000 (+0900) Subject: Fixed self verification issue : TPLAPP-3989 X-Git-Tag: submit/tizen_4.0/20171018.081537~4^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F79%2F152779%2F2;p=profile%2Ftv%2Fapps%2Fdotnet%2Fhome.git Fixed self verification issue : TPLAPP-3989 Change-Id: I4efd1488e14c380f50e725cc409a34cc9e11510a Signed-off-by: Hyerim Kim --- 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;