Fixed self verification issue : TPLAPP-3989 79/152779/2
authorHyerim Kim <rimi.kim@samsung.com>
Wed, 27 Sep 2017 05:27:15 +0000 (14:27 +0900)
committerHyerim Kim <rimi.kim@samsung.com>
Wed, 27 Sep 2017 05:55:03 +0000 (14:55 +0900)
Change-Id: I4efd1488e14c380f50e725cc409a34cc9e11510a
Signed-off-by: Hyerim Kim <rimi.kim@samsung.com>
TVApps/TVApps/Controls/AppListView.xaml.cs

index 36a5d56..8ab4e2d 100755 (executable)
@@ -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;