To prohibit build error.
authorcskim <charles0.kim@samsung.com>
Wed, 3 May 2017 04:28:34 +0000 (13:28 +0900)
committerChulSeung Kim <charles0.kim@samsung.com>
Thu, 8 Jun 2017 09:34:53 +0000 (18:34 +0900)
Change-Id: I4f4cf082e8466d73fc7433553bb6962c87cb1b9b

TVApps/TVApps/Views/MainPage.xaml.cs

index 9aa3110eae6b348271cb9c610632247634fbf0f7..2e41320a4c0dadf91e84fb05c874941b24996dd7 100755 (executable)
@@ -526,9 +526,11 @@ namespace TVApps.Views
                 return false;
             }
 
-            SynchronizationContext.Current.Post(async (o) =>
+            SynchronizationContext.Current.Post((o) =>
             {
-                await OnBackKeyPressedAtMain();
+#pragma warning disable CS4014
+                OnBackKeyPressedAtMain();
+#pragma warning restore CS4014
             }, "");
             return true;
         }