diff options
Diffstat (limited to 'app/src/main/res/xml/preference.xml')
-rw-r--r-- | app/src/main/res/xml/preference.xml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/app/src/main/res/xml/preference.xml b/app/src/main/res/xml/preference.xml index 1ad898a8..4c6e3157 100644 --- a/app/src/main/res/xml/preference.xml +++ b/app/src/main/res/xml/preference.xml @@ -22,10 +22,14 @@ <EditTextPreference android:title="@string/pref_password_title" android:dialogTitle="@string/pref_password_dialog_title" android:summary="@string/pref_password_dialog_title" - android:hint="45" android:key="general_show_time" /> + android:defaultValue="45" android:key="general_show_time" + android:inputType="number" /> <CheckBoxPreference android:title="@string/pref_copy_title" android:dialogTitle="@string/pref_copy_dialog_title" android:summary="@string/pref_copy_dialog_title" android:key="copy_on_decrypt" android:defaultValue="true" /> + <CheckBoxPreference android:title="@string/pref_recursive_filter" + android:summary="@string/pref_recursive_filter_hint" + android:key="filter_recursively" android:defaultValue="true"/> </PreferenceCategory> </PreferenceScreen>
\ No newline at end of file |