From 2c8954b9fb72cbdd14e10ae7cfbde9047d2d50ca Mon Sep 17 00:00:00 2001 From: Acclorite <140836141+Acclorite@users.noreply.github.com> Date: Fri, 17 Jan 2025 15:14:55 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20Marque=20for=20chapter=20title?= =?UTF-8?q?=20in=20Reader?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Disabled marque for book title and enabled for chapter title --- .../acclorite/book_story/presentation/reader/ReaderTopBar.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/src/main/java/ua/acclorite/book_story/presentation/reader/ReaderTopBar.kt b/app/src/main/java/ua/acclorite/book_story/presentation/reader/ReaderTopBar.kt index 4b2217fb..b7bd723c 100644 --- a/app/src/main/java/ua/acclorite/book_story/presentation/reader/ReaderTopBar.kt +++ b/app/src/main/java/ua/acclorite/book_story/presentation/reader/ReaderTopBar.kt @@ -106,10 +106,11 @@ fun ReaderTopBar( ) } ) - .basicMarquee(iterations = Int.MAX_VALUE)) + ) }, subtitle = { Text( + modifier = Modifier.basicMarquee(iterations = Int.MAX_VALUE), text = currentChapter?.title ?: activity.getString(R.string.no_chapters), color = MaterialTheme.colorScheme.onSurfaceVariant,