diff options
| author | JosJuice <josjuice@gmail.com> | 2022-03-28 17:55:48 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-28 17:55:48 +0200 |
| commit | 0204b119e904d358ba7084d18a84f77929a5f7e5 (patch) | |
| tree | 278ac4eafc1b3d0b8562e2a1238e21f333111a76 /Source/Android/app/src | |
| parent | c08a23b374b852f6a7db8a31996ab4ce52f08805 (diff) | |
| parent | 8a0c6816ddc778f37483e8f967d338ab53ae06b5 (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.xml | 4 |
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> |
