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-01 19:40:57 +0300
committerstefan-niedermann <info@niedermann.it>2020-02-01 19:40:57 +0300
commit088af8667583885fc88edab7d1bb15c38150b258 (patch)
tree43e44f95c2d36913aae643a0231182cf73c7e941
parent3953a8f0d4633d50d3ed45856ccd2a9fa55cb656 (diff)
Fix #242 Due date needs padding right when user has no edit permission
-rw-r--r--app/src/main/res/layout/item_card.xml10
-rw-r--r--fastlane/metadata/android/en-US/changelogs/18.txt3
2 files changed, 6 insertions, 7 deletions
diff --git a/app/src/main/res/layout/item_card.xml b/app/src/main/res/layout/item_card.xml
index 236a0615b..7adfac621 100644
--- a/app/src/main/res/layout/item_card.xml
+++ b/app/src/main/res/layout/item_card.xml
@@ -20,8 +20,8 @@
android:paddingStart="@dimen/standard_padding"
android:paddingLeft="@dimen/standard_padding"
android:paddingTop="@dimen/standard_half_padding"
- android:paddingEnd="0dp"
- android:paddingRight="0dp"
+ android:paddingEnd="@dimen/standard_padding"
+ android:paddingRight="@dimen/standard_padding"
android:paddingBottom="@dimen/standard_half_padding">
<LinearLayout
@@ -71,6 +71,8 @@
android:id="@+id/card_menu"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
+ android:layout_marginEnd="-16dp"
+ android:layout_marginRight="-16dp"
android:contentDescription="@string/label_menu"
android:padding="@dimen/standard_quarter_padding"
app:srcCompat="@drawable/ic_menu" />
@@ -96,11 +98,7 @@
android:id="@+id/card_details_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:layout_marginStart="0dp"
- android:layout_marginLeft="0dp"
android:layout_marginTop="@dimen/standard_quarter_margin"
- android:layout_marginEnd="@dimen/standard_margin"
- android:layout_marginRight="@dimen/standard_margin"
android:layout_marginBottom="@dimen/standard_half_margin"
android:orientation="horizontal">
diff --git a/fastlane/metadata/android/en-US/changelogs/18.txt b/fastlane/metadata/android/en-US/changelogs/18.txt
index 8931efc70..dfa9a29fd 100644
--- a/fastlane/metadata/android/en-US/changelogs/18.txt
+++ b/fastlane/metadata/android/en-US/changelogs/18.txt
@@ -1,2 +1,3 @@
- EmptyContentView is not inflateable on API level 14 (#254)
-- Keyboard doesn't auto pop up when creating new card (#249) \ No newline at end of file
+- Keyboard doesn't auto pop up when creating new card (#249)
+- Due date needs padding right when user has no edit permission (#242) \ No newline at end of file