diff options
| author | 2021-08-31 00:25:11 +0800 | |
|---|---|---|
| committer | 2021-09-03 07:52:47 +0000 | |
| commit | e1188fff1ac7a445083d249e3001826e958b6e69 (patch) | |
| tree | e616201b55b28b80d0943b5e7e50d26051ccd553 | |
| parent | c0992e4ec47ecd476dee760d1d415e7218e1049f (diff) | |
[Provider Model] Don't dismiss quick settings when config Wi-Fi network
Bug: 192823930
Test: manual test
atest -c InternetDialogControllerTest
Change-Id: I4aafcbc093d779243a9b7da425a805c32300302c
Merged-In: I4aafcbc093d779243a9b7da425a805c32300302c
(cherry picked from commit 152f485e08e7a241702b6d23ac31298f6d642afd)
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/qs/tiles/dialog/InternetDialogController.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/qs/tiles/dialog/InternetDialogController.java b/packages/SystemUI/src/com/android/systemui/qs/tiles/dialog/InternetDialogController.java index 62fa3d4ac819..76b2d3a3951d 100644 --- a/packages/SystemUI/src/com/android/systemui/qs/tiles/dialog/InternetDialogController.java +++ b/packages/SystemUI/src/com/android/systemui/qs/tiles/dialog/InternetDialogController.java @@ -739,7 +739,7 @@ public class InternetDialogController implements WifiEntry.DisconnectCallback, final Intent intent = new Intent("com.android.settings.WIFI_DIALOG") .putExtra(EXTRA_CHOSEN_WIFI_ENTRY_KEY, mWifiEntry.getKey()); intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); - mActivityStarter.startActivity(intent, true); + mActivityStarter.startActivity(intent, false /* dismissShade */); } else if (status == CONNECT_STATUS_FAILURE_UNKNOWN) { Toast.makeText(mContext, R.string.wifi_failed_connect_message, Toast.LENGTH_SHORT).show(); |