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
path: root/app
diff options
context:
space:
mode:
authorStefan Niedermann <info@niedermann.it>2020-11-04 20:01:43 +0300
committerStefan Niedermann <info@niedermann.it>2020-11-04 20:01:43 +0300
commit431e341ea754a5234678e42b1c86226f94de4dc2 (patch)
tree25158a518ce79ab7de7172c152f63973c0713fe0 /app
parent27a07f62966fbd22aa828acb3c386e9a8cbfcfbd (diff)
Add padding bottom to picker sheet to display all entries fully
Signed-off-by: Stefan Niedermann <info@niedermann.it>
Diffstat (limited to 'app')
-rw-r--r--app/src/main/res/layout/fragment_card_edit_tab_attachments.xml5
1 files changed, 4 insertions, 1 deletions
diff --git a/app/src/main/res/layout/fragment_card_edit_tab_attachments.xml b/app/src/main/res/layout/fragment_card_edit_tab_attachments.xml
index 1958e53da..99731fc53 100644
--- a/app/src/main/res/layout/fragment_card_edit_tab_attachments.xml
+++ b/app/src/main/res/layout/fragment_card_edit_tab_attachments.xml
@@ -71,7 +71,10 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimarySurface"
- android:padding="@dimen/spacer_1x"
+ android:paddingStart="@dimen/spacer_1x"
+ android:paddingTop="@dimen/spacer_1x"
+ android:paddingEnd="@dimen/spacer_1x"
+ android:paddingBottom="88dp"
tools:listitem="@layout/support_simple_spinner_dropdown_item"
tools:visibility="gone" />
</LinearLayout>