summaryrefslogtreecommitdiff
path: root/Source/Android/app/src
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2022-03-28 17:55:48 +0200
committerGitHub <noreply@github.com>2022-03-28 17:55:48 +0200
commit0204b119e904d358ba7084d18a84f77929a5f7e5 (patch)
tree278ac4eafc1b3d0b8562e2a1238e21f333111a76 /Source/Android/app/src
parentc08a23b374b852f6a7db8a31996ab4ce52f08805 (diff)
parent8a0c6816ddc778f37483e8f967d338ab53ae06b5 (diff)
Merge pull request #10541 from t895/list-fix
Android: Fix games list padding
Diffstat (limited to 'Source/Android/app/src')
-rw-r--r--Source/Android/app/src/main/res/layout/fragment_grid.xml4
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/Android/app/src/main/res/layout/fragment_grid.xml b/Source/Android/app/src/main/res/layout/fragment_grid.xml
index 976839ff1f..5c44cbcb5e 100644
--- a/Source/Android/app/src/main/res/layout/fragment_grid.xml
+++ b/Source/Android/app/src/main/res/layout/fragment_grid.xml
@@ -16,7 +16,9 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:listitem="@layout/card_game"
- android:paddingTop="8dp"/>
+ android:clipToPadding="false"
+ android:paddingTop="8dp"
+ android:paddingBottom="8dp"/>
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>