From: Hyerim Kim Date: Thu, 12 Oct 2017 06:29:16 +0000 (+0900) Subject: Fixed self verification issue : TPLAPP-3985 X-Git-Tag: submit/tizen_4.0/20171018.081537~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3338d785e7d1fa5ddb81b238ea123c66ec0f776d;p=profile%2Ftv%2Fapps%2Fdotnet%2Fhome.git 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 --- 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")) {