Remove unsued logs.
authorcskim <charles0.kim@samsung.com>
Mon, 8 May 2017 06:13:45 +0000 (15:13 +0900)
committerChulSeung Kim <charles0.kim@samsung.com>
Thu, 8 Jun 2017 09:34:54 +0000 (18:34 +0900)
Change-Id: I7ae00bfb6a489b680476420219990c7cf21c39e2

LibTVRefCommonPortable/DataModels/ShortcutInfo.cs
TVHome/TVHome.TizenTV/TVHome.TizenTV.cs
TVHome/TVHome/ViewModels/MainPageViewModel.cs

index 07389be..96fb832 100644 (file)
@@ -92,7 +92,7 @@ namespace LibTVRefCommonPortable.DataModels
             {
                 if (item.Value.Equals(CurrentStateDescription))
                 {
-                    DebuggingUtils.Dbg("[" + item.Key + "] => [" + state + "]");
+                    //DebuggingUtils.Dbg("[" + item.Key + "] => [" + state + "]");
                     break;
                 }
             }
index 293b11b..82f0fea 100755 (executable)
@@ -71,6 +71,7 @@ namespace TVHome.TizenTV
             /// Grab key events
             MainWindow.KeyGrab(ElmSharp.EvasKeyEventArgs.PlatformHomeButtonName, true);
             MainWindow.KeyGrab(ElmSharp.EvasKeyEventArgs.PlatformMenuButtonName, true);
+            MainWindow.KeyGrab("XF86SysMenu", true);
             MainWindow.KeyGrab("Up", false);
             MainWindow.KeyGrab("Down", false);
             MainWindow.KeyGrab("Left", false);
@@ -123,7 +124,8 @@ namespace TVHome.TizenTV
                     notification.OnHomeKeyPressed();
                 }
             }
-            else if (e.KeyName.CompareTo(ElmSharp.EvasKeyEventArgs.PlatformMenuButtonName) == 0)
+            else if (e.KeyName.CompareTo(ElmSharp.EvasKeyEventArgs.PlatformMenuButtonName) == 0 ||
+                e.KeyName.CompareTo("XF86SysMenu") == 0)
             {
                 if (notification != null)
                 {
index 0168f48..eff83cc 100755 (executable)
@@ -574,12 +574,12 @@ namespace TVHome.ViewModels
                 {
                     if (index == panelName)
                     {
-                        DebuggingUtils.Dbg(index.ToString() + " To Focused");
+                        //DebuggingUtils.Dbg(index.ToString() + " To Focused");
                         item.ChangeStatus("focused");
                     }
                     else
                     {
-                        DebuggingUtils.Dbg(index.ToString() + " To Default");
+                        //DebuggingUtils.Dbg(index.ToString() + " To Default");
                         item.ChangeStatus("default");
                     }