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
parent344c09cb4f75fdf02ef3173d0492f4a6b15dc415 (diff)
Fix crash when hitting enter on a label or user search input
-rw-r--r--app/src/main/res/layout/fragment_card_edit_tab_details.xml6
-rw-r--r--fastlane/metadata/android/en-US/changelogs/13.txt3
2 files changed, 6 insertions, 3 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
diff --git a/fastlane/metadata/android/en-US/changelogs/13.txt b/fastlane/metadata/android/en-US/changelogs/13.txt
index 810fbe074..de6a54719 100644
--- a/fastlane/metadata/android/en-US/changelogs/13.txt
+++ b/fastlane/metadata/android/en-US/changelogs/13.txt
@@ -1 +1,2 @@
-- Fix Double-clicking card opens EditActivity twice (#159) \ No newline at end of file
+- Fix Double-clicking card opens EditActivity twice (#159)
+- Fix crash when hitting enter on a label or user search input \ No newline at end of file