diff options
author | Hyerim Kim <rimi.kim@samsung.com> | 2017-10-12 15:29:16 +0900 |
---|---|---|
committer | Hyerim Kim <rimi.kim@samsung.com> | 2017-10-12 15:29:16 +0900 |
commit | 3338d785e7d1fa5ddb81b238ea123c66ec0f776d (patch) | |
tree | e11475fef027071f82abfafe2daedbf2f1fa2259 | |
parent | 8f2f9c9777d458e76f437d6d879255a81917e843 (diff) | |
download | home-3338d785e7d1fa5ddb81b238ea123c66ec0f776d.tar.gz home-3338d785e7d1fa5ddb81b238ea123c66ec0f776d.tar.bz2 home-3338d785e7d1fa5ddb81b238ea123c66ec0f776d.zip |
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 <rimi.kim@samsung.com>
-rwxr-xr-x | TVApps/TVApps/Views/MainPage.xaml.cs | 6 |
1 files changed, 1 insertions, 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")) { |