diff options
| author | Jeff Brown <jeffbrown@google.com> | 2012-04-11 15:19:41 -0700 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2012-04-11 15:19:41 -0700 |
| commit | cdebd54805bdd5f42ebc6bedb59d1c52c77a718c (patch) | |
| tree | 49b2bd19e3d7375cedc4fb103c5b639a2d0cae18 /core | |
| parent | 879392fe3152fc7781435ee991083fac3bd6f274 (diff) | |
| parent | 2e7760eba084400f95476cf153db964cdfd40753 (diff) | |
| download | frameworks_base-cdebd54805bdd5f42ebc6bedb59d1c52c77a718c.zip frameworks_base-cdebd54805bdd5f42ebc6bedb59d1c52c77a718c.tar.gz frameworks_base-cdebd54805bdd5f42ebc6bedb59d1c52c77a718c.tar.bz2 | |
Merge "Don't do anything on lid state change by default."
Diffstat (limited to 'core')
| -rwxr-xr-x | core/res/res/values/config.xml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/core/res/res/values/config.xml b/core/res/res/values/config.xml index 31aa8d5..acf63a1 100755 --- a/core/res/res/values/config.xml +++ b/core/res/res/values/config.xml @@ -323,8 +323,9 @@ true here reverses that logic. --> <bool name="config_reverseDefaultRotation">false</bool> - <!-- The number of degrees to rotate the display when the keyboard is open. --> - <integer name="config_lidOpenRotation">90</integer> + <!-- The number of degrees to rotate the display when the keyboard is open. + A value of -1 means no change in orientation by default. --> + <integer name="config_lidOpenRotation">-1</integer> <!-- The number of degrees to rotate the display when the device is in a desk dock. A value of -1 means no change in orientation by default. --> @@ -370,8 +371,8 @@ <!-- Indicate whether the lid state impacts the accessibility of the physical keyboard. 0 means it doesn't, 1 means it is accessible when the lid is open, 2 means it is accessible when the lid is - closed. The default is 1. --> - <integer name="config_lidKeyboardAccessibility">1</integer> + closed. The default is 0. --> + <integer name="config_lidKeyboardAccessibility">0</integer> <!-- Indicate whether the lid state impacts the accessibility of the physical keyboard. 0 means it doesn't, 1 means it is accessible |
