Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/stefan-niedermann/nextcloud-deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstefan-niedermann <info@niedermann.it>2019-10-16 18:30:34 +0300
committerstefan-niedermann <info@niedermann.it>2019-10-16 18:30:34 +0300
commit63cf8a48191b93ecd62e150a7eecfcf25314532d (patch)
treee973319f53d3a4c9a25eed8021fd6fcc75095367 /app/src/main/res
parent344c09cb4f75fdf02ef3173d0492f4a6b15dc415 (diff)
Fix crash when hitting enter on a label or user search input
Diffstat (limited to 'app/src/main/res')
-rw-r--r--app/src/main/res/layout/fragment_card_edit_tab_details.xml6
1 files changed, 4 insertions, 2 deletions
diff --git a/app/src/main/res/layout/fragment_card_edit_tab_details.xml b/app/src/main/res/layout/fragment_card_edit_tab_details.xml
index bcce57940..494edb557 100644
--- a/app/src/main/res/layout/fragment_card_edit_tab_details.xml
+++ b/app/src/main/res/layout/fragment_card_edit_tab_details.xml
@@ -40,7 +40,8 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:completionThreshold="1"
- android:hint="@string/label_labels" />
+ android:hint="@string/label_labels"
+ android:inputType="text" />
</LinearLayout>
<com.google.android.material.chip.ChipGroup
@@ -123,7 +124,8 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:completionThreshold="1"
- android:hint="@string/hint_assign_people" />
+ android:hint="@string/hint_assign_people"
+ android:inputType="text" />
</LinearLayout>
<LinearLayout