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>2020-02-28 09:33:58 +0300
committerstefan-niedermann <info@niedermann.it>2020-02-28 09:33:58 +0300
commit64a4de98cbb336bc9ce7dab7f97ad09e348a3b83 (patch)
treea75165b8c78609856005e54dc3b70522c4003297
parentcfec328679b2bd6245b4f8daad265c9115839d29 (diff)
Fix #261 Wrap card title to new line(s) if length exceeds width of screen
-rw-r--r--app/src/main/res/layout/activity_edit.xml2
-rw-r--r--fastlane/metadata/android/en-US/changelogs/22.txt1
2 files changed, 2 insertions, 1 deletions
diff --git a/app/src/main/res/layout/activity_edit.xml b/app/src/main/res/layout/activity_edit.xml
index 47b31b1e7..dd8857f2d 100644
--- a/app/src/main/res/layout/activity_edit.xml
+++ b/app/src/main/res/layout/activity_edit.xml
@@ -33,7 +33,7 @@
android:layout_marginEnd="16dp"
android:layout_marginRight="16dp"
android:importantForAutofill="no"
- android:inputType="text"
+ android:inputType="textMultiLine"
android:maxLength="100"
app:theme="@style/AppTheme.EditText"
tools:text="Fancy card title" />
diff --git a/fastlane/metadata/android/en-US/changelogs/22.txt b/fastlane/metadata/android/en-US/changelogs/22.txt
new file mode 100644
index 000000000..82c6f883f
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/22.txt
@@ -0,0 +1 @@
+- Wrap card title to new line(s) if length exceeds width of screen (#261) \ No newline at end of file