summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJay Shrauner <shrauner@google.com>2014-03-03 22:11:07 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-03-03 22:11:08 +0000
commit190fa7d0f4f972e46287495e7203ad056b982c94 (patch)
tree3cb39247ff7bd06661eb1e09e7058322de9219a0 /src
parentbfa9deed2e05ab46a336c2f8ad6c21cab3eb804f (diff)
parent6c1518dbfde280d1aee480164c1fc8af951ee4d1 (diff)
Merge "Always call through to super.onBackPressed in DialtactsActivity" into klp-dev
Diffstat (limited to 'src')
-rw-r--r--src/com/android/dialer/DialtactsActivity.java6
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();
}