[Android] Place the ListPreference for aspect ratio at the top of its PreferenceCategory. Makes it look cleaner in terms of how the preferences are laid out.

This commit is contained in:
Lioncash 2013-10-17 02:05:08 -04:00
parent 7c0f177090
commit e6917787ee

View File

@ -3,6 +3,13 @@
<!-- General -->
<PreferenceCategory android:title="@string/general" >
<ListPreference
android:entries="@array/aspect_ratios"
android:entryValues="@array/aspect_values"
android:defaultValue="auto"
android:key="video_aspect_ratio"
android:summary="@string/aspect_ratio_desc"
android:title="@string/aspect_ratio" />
<CheckBoxPreference
android:defaultValue="true"
android:key="video_vsync"
@ -18,14 +25,6 @@
android:key="video_scale_integer"
android:summary="@string/scale_integer_desc"
android:title="@string/scale_integer" />
<ListPreference
android:entries="@array/aspect_ratios"
android:entryValues="@array/aspect_values"
android:defaultValue="auto"
android:key="video_aspect_ratio"
android:summary="@string/aspect_ratio_desc"
android:title="@string/aspect_ratio" />
</PreferenceCategory>
<!-- Synchronization -->