diff options
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/xml/preference.xml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/app/src/main/res/xml/preference.xml b/app/src/main/res/xml/preference.xml index 45497dbe..d0abd8d1 100644 --- a/app/src/main/res/xml/preference.xml +++ b/app/src/main/res/xml/preference.xml @@ -2,9 +2,14 @@ <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"> <PreferenceCategory android:title="Git"> <EditTextPreference android:title="Server" - android:key="git_remote_server"/> + android:key="git_remote_server" + android:hint="server.com"/> + <EditTextPreference android:title="Remote location" + android:key="git_remote_location" + android:hint="path/to/repository"/> <EditTextPreference android:title="Username" - android:key="git_remote_username"/> + android:key="git_remote_username" + android:hint="username"/> </PreferenceCategory> <PreferenceCategory android:title="Crypto"> |