From 20e7b2580896c6feaa215ba92345dd5524f014d8 Mon Sep 17 00:00:00 2001 From: OxygenCobalt Date: Sat, 18 Jun 2022 08:46:10 -0600 Subject: [PATCH] queue: fix visual issue with transition Fix a visual issue with the queue animation where the playback view will still slightly show. This was caused by the lack of a background in the queue fragment UI. --- CHANGELOG.md | 7 +++++++ .../java/org/oxycblt/auxio/playback/PlaybackViewModel.kt | 2 +- app/src/main/res/layout/fragment_queue.xml | 1 + info/FAQ.md | 2 +- 4 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 12897d40a..74ce8676f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## dev + +#### What's Fixed +- Fixed broken tablet layouts +- Fixed seam that would appear on some album covers +- Fixed visual issue with the queue opening animation + ## v2.4.0 #### What's New diff --git a/app/src/main/java/org/oxycblt/auxio/playback/PlaybackViewModel.kt b/app/src/main/java/org/oxycblt/auxio/playback/PlaybackViewModel.kt index 5fbe42849..10a0e2b74 100644 --- a/app/src/main/java/org/oxycblt/auxio/playback/PlaybackViewModel.kt +++ b/app/src/main/java/org/oxycblt/auxio/playback/PlaybackViewModel.kt @@ -144,7 +144,7 @@ class PlaybackViewModel : ViewModel(), PlaybackStateManager.Callback, MusicStore * usually alongside a context too. Examples include: * - Opening files * - Restoring the playback state - * - Future app shortcuts + * - (Future) app shortcuts * * We would normally want to put this kind of functionality into PlaybackService, but it's * lifecycle makes that more or less impossible. diff --git a/app/src/main/res/layout/fragment_queue.xml b/app/src/main/res/layout/fragment_queue.xml index db7d5dc04..afdc9c793 100644 --- a/app/src/main/res/layout/fragment_queue.xml +++ b/app/src/main/res/layout/fragment_queue.xml @@ -4,6 +4,7 @@ xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" + android:background="?attr/colorSurface" android:orientation="vertical">