commit 44bdd3fb0b5e1db9805e4effe0ef008749c51931
Author: Leszek Koltunski <leszek@koltunski.pl>
Date:   Tue Aug 11 23:22:53 2020 +0100

    Fix the fact that now there are too many tabs in the Scores dialog - make the tabs SCROLLABLE.

diff --git a/src/main/res/layout/dialog_tabbed.xml b/src/main/res/layout/dialog_tabbed.xml
index 4fcba905..fd9ba887 100644
--- a/src/main/res/layout/dialog_tabbed.xml
+++ b/src/main/res/layout/dialog_tabbed.xml
@@ -1,15 +1,23 @@
 <?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+<LinearLayout
+
+    xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:app="http://schemas.android.com/apk/res-auto"
+
     android:layout_width="match_parent"
     android:layout_height="match_parent"
     android:layout_weight="1"
-    android:orientation="vertical" >
+    android:orientation="vertical">
 
     <com.google.android.material.tabs.TabLayout
         android:id="@+id/sliding_tabs"
-        android:layout_width="match_parent"
+        android:layout_width="wrap_content"
         android:layout_height="wrap_content"
-        android:theme="@style/Theme.AppCompat.NoActionBar">
+        android:theme="@style/Theme.AppCompat.NoActionBar"
+        app:tabMode="scrollable"
+        app:tabMinWidth="20dp"
+        app:tabGravity="fill"
+        >
     </com.google.android.material.tabs.TabLayout>
 
     <androidx.viewpager.widget.ViewPager
