[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:
parent
7c0f177090
commit
e6917787ee
|
@ -3,6 +3,13 @@
|
||||||
|
|
||||||
<!-- General -->
|
<!-- General -->
|
||||||
<PreferenceCategory android:title="@string/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
|
<CheckBoxPreference
|
||||||
android:defaultValue="true"
|
android:defaultValue="true"
|
||||||
android:key="video_vsync"
|
android:key="video_vsync"
|
||||||
|
@ -18,14 +25,6 @@
|
||||||
android:key="video_scale_integer"
|
android:key="video_scale_integer"
|
||||||
android:summary="@string/scale_integer_desc"
|
android:summary="@string/scale_integer_desc"
|
||||||
android:title="@string/scale_integer" />
|
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>
|
</PreferenceCategory>
|
||||||
|
|
||||||
<!-- Synchronization -->
|
<!-- Synchronization -->
|
||||||
|
|
Loading…
Reference in New Issue