From 18f952d95c0b736adef2c7084246b8852ec7b5c5 Mon Sep 17 00:00:00 2001
From: Connor McLaughlin <stenzek@gmail.com>
Date: Tue, 9 Mar 2021 01:09:19 +1000
Subject: [PATCH] Android: Enable scrollbars in game list

---
 android/app/src/main/res/layout/fragment_game_grid.xml | 1 +
 android/app/src/main/res/layout/fragment_game_list.xml | 1 +
 2 files changed, 2 insertions(+)

diff --git a/android/app/src/main/res/layout/fragment_game_grid.xml b/android/app/src/main/res/layout/fragment_game_grid.xml
index 514745b97..26ce3e703 100644
--- a/android/app/src/main/res/layout/fragment_game_grid.xml
+++ b/android/app/src/main/res/layout/fragment_game_grid.xml
@@ -9,6 +9,7 @@
         android:id="@+id/game_list_view"
         android:layout_width="match_parent"
         android:layout_height="match_parent"
+        android:scrollbars="vertical"
         app:layout_constraintBottom_toBottomOf="parent"
         app:layout_constraintLeft_toLeftOf="parent"
         app:layout_constraintRight_toRightOf="parent"
diff --git a/android/app/src/main/res/layout/fragment_game_list.xml b/android/app/src/main/res/layout/fragment_game_list.xml
index 6d8d8f069..0d320dc6e 100644
--- a/android/app/src/main/res/layout/fragment_game_list.xml
+++ b/android/app/src/main/res/layout/fragment_game_list.xml
@@ -9,6 +9,7 @@
         android:id="@+id/game_list_view"
         android:layout_width="match_parent"
         android:layout_height="match_parent"
+        android:scrollbars="vertical"
         app:layout_constraintBottom_toBottomOf="parent"
         app:layout_constraintLeft_toLeftOf="parent"
         app:layout_constraintRight_toRightOf="parent"