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-19 16:18:31 +0300
committerstefan-niedermann <info@niedermann.it>2019-10-19 16:18:31 +0300
commitf70a606b2ef0ba62cdf8baee132649f1ce7a1356 (patch)
treeb93a396b769f970bc1135c275d50b6f3d4558f84 /app/src/main/res
parente5458b63815a3e08d2eefc3b688d55a92f3c9569 (diff)
Fix clearDueDate button behavior
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 56ba802f2..d6b630298 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
@@ -61,26 +61,28 @@
android:id="@+id/dueDateDate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
+ android:layout_weight="2"
android:enabled="true"
android:focusable="false"
android:hint="@string/hint_due_date_date"
android:importantForAutofill="no"
+ android:inputType="date"
android:maxLines="1"
- android:layout_weight="2"
tools:text="01/07/2020" />
<EditText
android:id="@+id/dueDateTime"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
+ android:layout_weight="1"
android:enabled="true"
android:focusable="false"
android:hint="@string/hint_due_date_time"
android:importantForAutofill="no"
+ android:inputType="datetime"
android:maxLines="1"
android:minLines="0"
android:textAlignment="center"
- android:layout_weight="1"
tools:text="11:45" />
<ImageView