From 3338d785e7d1fa5ddb81b238ea123c66ec0f776d Mon Sep 17 00:00:00 2001 From: Hyerim Kim Date: Thu, 12 Oct 2017 15:29:16 +0900 Subject: Fixed self verification issue : TPLAPP-3985 - Unnecessary focusing event is occured when it changed from normal mode to pin/delete mode. Change-Id: I1dae967867ca0e197a3e2aff96564efa9e803dc3 Signed-off-by: Hyerim Kim --- TVApps/TVApps/Views/MainPage.xaml.cs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/TVApps/TVApps/Views/MainPage.xaml.cs b/TVApps/TVApps/Views/MainPage.xaml.cs index 161eea6..7610100 100755 --- a/TVApps/TVApps/Views/MainPage.xaml.cs +++ b/TVApps/TVApps/Views/MainPage.xaml.cs @@ -414,7 +414,6 @@ namespace TVApps.Views FooterPin.additionalInfo.IsVisible = false; FooterDelete.IsVisible = false; BackKeyInfo.Text = "Quit"; - AppList.InitializeFocus(); break; case AppsStatus.Pin: FooterNormal.IsVisible = false; @@ -436,6 +435,7 @@ namespace TVApps.Views FooterPin.IsVisible = false; FooterDelete.IsVisible = true; BackKeyInfo.Text = "Front"; + AppList.InitializeFocus(); break; case AppsStatus.LongPress: FooterNormal.IsVisible = true; @@ -470,10 +470,6 @@ namespace TVApps.Views ret.Add("answer", answer ? "yes" : "no"); DeletePopupCommand?.Execute(ret); } - else - { - AppList.InitializeFocus(); - } } else if (e.PropertyName.Equals("IsSelectedExceeds")) { -- cgit v1.2.3