diff options
author | Pawit Pornkitprasan <p.pawit@gmail.com> | 2011-12-26 19:42:13 +0700 |
---|---|---|
committer | Pawit Pornkitprasan <p.pawit@gmail.com> | 2011-12-26 19:42:13 +0700 |
commit | ae5393e4349fe392d4d39f9b600461ea57f510ad (patch) | |
tree | 0dc949d2b431ecc13cf024362d697ddc26ea19aa | |
parent | c5dcc948dddbf485c79170f0836cc45c6b06aa1c (diff) | |
download | device_samsung_aries-common-ae5393e4349fe392d4d39f9b600461ea57f510ad.zip device_samsung_aries-common-ae5393e4349fe392d4d39f9b600461ea57f510ad.tar.gz device_samsung_aries-common-ae5393e4349fe392d4d39f9b600461ea57f510ad.tar.bz2 |
AriesParts: Default TV-Out to disabled
If the user has not plugged in a headphone/TV-Out cable since boot,
there would be no sticky intent and the TV-Out checkbox would be
enabled. Disable it by default.
-rw-r--r-- | AriesParts/res/xml/main.xml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/AriesParts/res/xml/main.xml b/AriesParts/res/xml/main.xml index 9c5ff22..e758fd3 100644 --- a/AriesParts/res/xml/main.xml +++ b/AriesParts/res/xml/main.xml @@ -40,7 +40,9 @@ android:key="tvout_enable" android:title="@string/tvout_enable_head" android:summaryOn="@string/tvout_enable_summary_on" - android:persistent="false" /> + android:summaryOff="@string/tvout_enable_summary_nocable" + android:persistent="false" + android:enabled="false" /> <ListPreference android:key="tvout_system" android:title="@string/tvout_system_head" |