Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 636f3eac authored by Wei Liu's avatar Wei Liu
Browse files

Add clear_top flag to settings action intent.

Bug: 17200185

Change-Id: I156a8726055452b56d8ccd52010cdea8baaa79c3
parent 9bfa0736
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -387,7 +387,7 @@ class GlobalActions implements DialogInterface.OnDismissListener, DialogInterfac
            @Override
            public void onPress() {
                Intent intent = new Intent(Settings.ACTION_SETTINGS);
                intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
                intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP);
                mContext.startActivity(intent);
            }