aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/dialog_decrypt_keys.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/layout/dialog_decrypt_keys.xml')
-rw-r--r--app/src/main/res/layout/dialog_decrypt_keys.xml9
1 files changed, 5 insertions, 4 deletions
diff --git a/app/src/main/res/layout/dialog_decrypt_keys.xml b/app/src/main/res/layout/dialog_decrypt_keys.xml
index 8f49d87..a9b1e87 100644
--- a/app/src/main/res/layout/dialog_decrypt_keys.xml
+++ b/app/src/main/res/layout/dialog_decrypt_keys.xml
@@ -2,7 +2,7 @@
2 2
3<!-- 3<!--
4 * Tinc App, an Android binding and user interface for the tinc mesh VPN daemon 4 * Tinc App, an Android binding and user interface for the tinc mesh VPN daemon
5 * Copyright (C) 2017-2018 Pacien TRAN-GIRARD 5 * Copyright (C) 2017-2019 Pacien TRAN-GIRARD
6 * 6 *
7 * This program is free software: you can redistribute it and/or modify 7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by 8 * it under the terms of the GNU General Public License as published by
@@ -22,16 +22,17 @@
22 android:layout_width="match_parent" 22 android:layout_width="match_parent"
23 android:layout_height="wrap_content" 23 android:layout_height="wrap_content"
24 android:orientation="vertical" 24 android:orientation="vertical"
25 android:paddingBottom="@dimen/dialog_vertical_margin"
26 android:paddingLeft="@dimen/dialog_horizontal_margin" 25 android:paddingLeft="@dimen/dialog_horizontal_margin"
26 android:paddingTop="@dimen/dialog_vertical_margin"
27 android:paddingRight="@dimen/dialog_horizontal_margin" 27 android:paddingRight="@dimen/dialog_horizontal_margin"
28 android:paddingTop="@dimen/dialog_vertical_margin"> 28 android:paddingBottom="@dimen/dialog_vertical_margin">
29 29
30 <EditText 30 <EditText
31 android:id="@+id/passphrase" 31 android:id="@+id/passphrase"
32 android:layout_width="match_parent" 32 android:layout_width="match_parent"
33 android:layout_height="match_parent" 33 android:layout_height="match_parent"
34 android:hint="@string/decrypt_key_modal_field_passphrase" 34 android:hint="@string/decrypt_key_modal_field_passphrase"
35 android:inputType="textPassword"/> 35 android:inputType="textPassword"
36 android:singleLine="true"/>
36 37
37</LinearLayout> 38</LinearLayout>