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

Commit 0641ab3d authored by Wei Liu's avatar Wei Liu Committed by Android Git Automerger
Browse files

am 636f3eac: Add clear_top flag to settings action intent. Bug: 17200185

* commit '636f3eac':
  Add clear_top flag to settings action intent. Bug: 17200185
parents 4576f597 636f3eac
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -388,7 +388,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);
            }