diff options
Diffstat (limited to 'ui/src')
-rw-r--r-- | ui/src/main/res/layout/tunnel_editor_peer.xml | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/ui/src/main/res/layout/tunnel_editor_peer.xml b/ui/src/main/res/layout/tunnel_editor_peer.xml index 9d1c7cc4..77e47d40 100644 --- a/ui/src/main/res/layout/tunnel_editor_peer.xml +++ b/ui/src/main/res/layout/tunnel_editor_peer.xml @@ -139,11 +139,9 @@ <com.google.android.material.textfield.TextInputLayout android:id="@+id/allowed_ips_label_layout" style="@style/TextInputLayoutBase" - android:layout_width="0dp" + android:layout_width="match_parent" android:layout_height="wrap_content" - android:layout_marginStart="4dp" - android:layout_marginTop="4dp" - android:layout_marginEnd="4dp" + android:layout_margin="4dp" android:hint="@string/allowed_ips" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" @@ -153,6 +151,7 @@ android:id="@+id/allowed_ips_text" android:layout_width="match_parent" android:layout_height="wrap_content" + android:layout_alignParentStart="true" android:inputType="textNoSuggestions|textVisiblePassword" android:text="@={item.allowedIps}" /> </com.google.android.material.textfield.TextInputLayout> |