From 913db88fded56adeaa486ed2b495925e2cfaf120 Mon Sep 17 00:00:00 2001 From: OxygenCobalt Date: Fri, 5 Aug 2022 20:47:00 -0600 Subject: [PATCH] ui: fix incorrect queue text style Fix an accidental usage of Material3 text styles instead of Auxio. Left-over from the testing app I did for the new bottom sheets. Stuck around through some means. --- app/src/main/res/layout-w600dp-land/fragment_main.xml | 2 +- app/src/main/res/layout/fragment_main.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/res/layout-w600dp-land/fragment_main.xml b/app/src/main/res/layout-w600dp-land/fragment_main.xml index f946e1c88..a4a0fd849 100644 --- a/app/src/main/res/layout-w600dp-land/fragment_main.xml +++ b/app/src/main/res/layout-w600dp-land/fragment_main.xml @@ -54,7 +54,7 @@ android:layout_height="64dp" android:gravity="center" android:text="@string/lbl_queue" - android:textAppearance="@style/TextAppearance.Material3.LabelLarge" + android:textAppearance="@style/TextAppearance.Auxio.LabelLarge" android:textColor="?attr/colorOnSurfaceVariant" app:layout_constraintBottom_toBottomOf="@+id/handle" app:layout_constraintEnd_toEndOf="@+id/handle" diff --git a/app/src/main/res/layout/fragment_main.xml b/app/src/main/res/layout/fragment_main.xml index 71e862468..fc0c5ca0f 100644 --- a/app/src/main/res/layout/fragment_main.xml +++ b/app/src/main/res/layout/fragment_main.xml @@ -63,7 +63,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/lbl_queue" - android:textAppearance="@style/TextAppearance.Material3.LabelLarge" + android:textAppearance="@style/TextAppearance.Auxio.LabelLarge" android:textColor="?attr/colorOnSurfaceVariant" app:layout_constraintBottom_toBottomOf="@+id/handle" app:layout_constraintEnd_toEndOf="@+id/handle"