diff --git a/core/res/res/drawable-hdpi/ic_lockscreen_handle_normal.png b/core/res/res/drawable-hdpi/ic_lockscreen_handle_normal.png
index e21a87caa40cd..0f4bfe6d0d1fd 100644
Binary files a/core/res/res/drawable-hdpi/ic_lockscreen_handle_normal.png and b/core/res/res/drawable-hdpi/ic_lockscreen_handle_normal.png differ
diff --git a/core/res/res/drawable-hdpi/ic_lockscreen_handle_pressed.png b/core/res/res/drawable-hdpi/ic_lockscreen_handle_pressed.png
index 3283f99a555ed..995705dc607e6 100644
Binary files a/core/res/res/drawable-hdpi/ic_lockscreen_handle_pressed.png and b/core/res/res/drawable-hdpi/ic_lockscreen_handle_pressed.png differ
diff --git a/core/res/res/drawable-mdpi/ic_lockscreen_handle_normal.png b/core/res/res/drawable-mdpi/ic_lockscreen_handle_normal.png
index c10344f83bba9..754d7bc830e53 100644
Binary files a/core/res/res/drawable-mdpi/ic_lockscreen_handle_normal.png and b/core/res/res/drawable-mdpi/ic_lockscreen_handle_normal.png differ
diff --git a/core/res/res/drawable-mdpi/ic_lockscreen_handle_pressed.png b/core/res/res/drawable-mdpi/ic_lockscreen_handle_pressed.png
index 08c6cfe71bc6a..0187a02afc213 100644
Binary files a/core/res/res/drawable-mdpi/ic_lockscreen_handle_pressed.png and b/core/res/res/drawable-mdpi/ic_lockscreen_handle_pressed.png differ
diff --git a/core/res/res/drawable-xhdpi/ic_lockscreen_handle_normal.png b/core/res/res/drawable-xhdpi/ic_lockscreen_handle_normal.png
new file mode 100644
index 0000000000000..544924e4bcf98
Binary files /dev/null and b/core/res/res/drawable-xhdpi/ic_lockscreen_handle_normal.png differ
diff --git a/core/res/res/drawable-xhdpi/ic_lockscreen_handle_pressed.png b/core/res/res/drawable-xhdpi/ic_lockscreen_handle_pressed.png
new file mode 100644
index 0000000000000..2d28009f22352
Binary files /dev/null and b/core/res/res/drawable-xhdpi/ic_lockscreen_handle_pressed.png differ
diff --git a/core/res/res/values-sw600dp/config.xml b/core/res/res/values-sw600dp/config.xml
index d6a0cdd7d4a75..13bbac60f5c86 100644
--- a/core/res/res/values-sw600dp/config.xml
+++ b/core/res/res/values-sw600dp/config.xml
@@ -23,9 +23,6 @@
2
-
- false
-
true
diff --git a/core/res/res/values/config.xml b/core/res/res/values/config.xml
index 0ad3184fabdaf..827153e7243e1 100755
--- a/core/res/res/values/config.xml
+++ b/core/res/res/values/config.xml
@@ -3,16 +3,16 @@
/*
** Copyright 2009, The Android Open Source Project
**
-** Licensed under the Apache License, Version 2.0 (the "License");
-** you may not use this file except in compliance with the License.
-** You may obtain a copy of the License at
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
**
-** http://www.apache.org/licenses/LICENSE-2.0
+** http://www.apache.org/licenses/LICENSE-2.0
**
-** Unless required by applicable law or agreed to in writing, software
-** distributed under the License is distributed on an "AS IS" BASIS,
-** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-** See the License for the specific language governing permissions and
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
** limitations under the License.
*/
-->
@@ -54,25 +54,25 @@
connected. If you use the ims apn DCT will block
any other apn from connecting until ims apn is connected-->
false
-
+
false
-
+
200
-
+
400
-
+
500
150
220
-
+
320dp
-
+
false
-
+
0
@@ -202,7 +202,7 @@
the slider is open. This can be set or unset depending how easily
the slider can be opened (for example, in a pocket or purse). -->
true
-
+
false
@@ -212,10 +212,10 @@
false
-
+
true
-
+
- 0
@@ -380,8 +380,8 @@
false
-
- true
+
+ false
false
@@ -460,7 +460,7 @@
This feature should be disabled for most devices. -->
0
-
@null
diff --git a/policy/src/com/android/internal/policy/impl/LockPatternKeyguardView.java b/policy/src/com/android/internal/policy/impl/LockPatternKeyguardView.java
index eea30407af553..b60bae7d49eb9 100644
--- a/policy/src/com/android/internal/policy/impl/LockPatternKeyguardView.java
+++ b/policy/src/com/android/internal/policy/impl/LockPatternKeyguardView.java
@@ -682,8 +682,9 @@ public class LockPatternKeyguardView extends KeyguardViewBase {
final boolean usingLockPattern = mLockPatternUtils.getKeyguardStoredPasswordQuality()
== DevicePolicyManager.PASSWORD_QUALITY_SOMETHING;
- boolean showSlidingTab = getResources().getBoolean(R.bool.config_enableSlidingTabFirst);
- if (isSecure() && (usingLockPattern || !showSlidingTab)) {
+ boolean showLockBeforeUnlock = getResources()
+ .getBoolean(R.bool.config_enableLockBeforeUnlockScreen);
+ if (isSecure() && (usingLockPattern || !showLockBeforeUnlock)) {
return Mode.UnlockScreen;
} else {
return Mode.LockScreen;