diff options
author | Jay Shrauner <shrauner@google.com> | 2014-03-03 22:18:05 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2014-03-03 22:18:05 +0000 |
commit | c6f1b1f3ecb6daf4d1a5bf18daba58dcd8b832be (patch) | |
tree | 6174657eb2480ebc2d8bdec5cb8b47e05247b556 | |
parent | 63d89c890cc9cdffad1fd91b7f66a47e61f9fc22 (diff) | |
parent | 0580779dc9f205b3509ddcdf40463c150503200a (diff) |
am 0580779d: am 190fa7d0: Merge "Always call through to super.onBackPressed in DialtactsActivity" into klp-dev
* commit '0580779dc9f205b3509ddcdf40463c150503200a':
Always call through to super.onBackPressed in DialtactsActivity
-rw-r--r-- | src/com/android/dialer/DialtactsActivity.java | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/com/android/dialer/DialtactsActivity.java b/src/com/android/dialer/DialtactsActivity.java index cfcf5e5db..0c0fcdafe 100644 --- a/src/com/android/dialer/DialtactsActivity.java +++ b/src/com/android/dialer/DialtactsActivity.java @@ -908,12 +908,6 @@ public class DialtactsActivity extends TransactionSafeActivity implements View.O } else if (getInSearchUi()) { mSearchView.setText(null); mDialpadFragment.clearDialpad(); - } else if (isTaskRoot()) { - // Instead of stopping, simply push this to the back of the stack. - // This is only done when running at the top of the stack; - // otherwise, we have been launched by someone else so need to - // allow the user to go back to the caller. - moveTaskToBack(false); } else { super.onBackPressed(); } |