mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-12-02 10:24:11 +01:00
42a11788f9
Previously typed "Mode 2" but it wants the integer value for the default setting. This stops a crash when no configuration.
10 lines
536 B
XML
10 lines
536 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
|
|
<PreferenceCategory android:title="Controller Settings">
|
|
<ListPreference android:title="Controller Mode"
|
|
android:key="controller_type" android:summary="Select whether you want the virtual controller to use mode 1 or mode 2 convention"
|
|
android:defaultValue="2"
|
|
android:entries="@array/controllerTypeArray"
|
|
android:entryValues="@array/controllerTypeValues"/>
|
|
</PreferenceCategory>
|
|
</PreferenceScreen> |