From 3dfbc46c0ea9b3a16e306c859fee6d87094f13bc Mon Sep 17 00:00:00 2001 From: Daniel Nishi Date: Tue, 7 Feb 2017 09:40:54 -0800 Subject: [PATCH] Re-add the break statement that was accidentally removed. This fixes the problem where the game fragment starts at the same time as external sources. Bug: 35056002 Test: b/34768986 Change-Id: Ie35decc627dc6bec493a8c1f1976dc11d460f5fe --- src/com/android/settings/applications/ManageApplications.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/com/android/settings/applications/ManageApplications.java b/src/com/android/settings/applications/ManageApplications.java index 97f36c37884..7c187a7f1f4 100644 --- a/src/com/android/settings/applications/ManageApplications.java +++ b/src/com/android/settings/applications/ManageApplications.java @@ -547,6 +547,7 @@ public class ManageApplications extends InstrumentedPreferenceFragment break; case LIST_TYPE_MANAGE_SOURCES: startAppInfoFragment(ExternalSourcesDetails.class, R.string.install_other_apps); + break; case LIST_TYPE_GAMES: startAppInfoFragment(AppStorageSettings.class, R.string.game_storage_settings); break;