Fix standard progress bar transition with large page texts

In case the double page reading mode was used and the current page was a double page, the transition got messed up due to the page text wrapping and growing in height
This commit is contained in:
schroda
2026-07-15 14:34:35 +02:00
parent 79ac2c3d27
commit 7559676e68
2 changed files with 2 additions and 0 deletions

View File

@@ -74,6 +74,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
- (**Reader**) Fix infinite scroll immediately opening previous chapter with disabled transition page when opening reader - (**Reader**) Fix infinite scroll immediately opening previous chapter with disabled transition page when opening reader
- (**Reader**) Fix preserving scroll position - (**Reader**) Fix preserving scroll position
- (**Reader**) Fix missing gap between chapters in continuous vertical and horizontal reading modes with disabled transition page - (**Reader**) Fix missing gap between chapters in continuous vertical and horizontal reading modes with disabled transition page
- (**Reader**) Fix desktop standard progress bar open/close transition with double page reading mode
- (**Browse**) Fix showing only nsfw sources in the browse source page when the "show nsfw" setting is disabled - (**Browse**) Fix showing only nsfw sources in the browse source page when the "show nsfw" setting is disabled
- (**Browse**) Fix not being able to select some languages as an "allowed language" in some situations (e.g., browser native language "en-GB" prevented "English" from getting visually shown as enabled) - (**Browse**) Fix not being able to select some languages as an "allowed language" in some situations (e.g., browser native language "en-GB" prevented "English" from getting visually shown as enabled)
- (**Manga/Library**) Fix mark as read/unread option not being disabled for manga without any chapters - (**Manga/Library**) Fix mark as read/unread option not being disabled for manga without any chapters

View File

@@ -18,5 +18,6 @@ export const ReaderProgressBarPageNumber = styled(Typography)({
textAlign: 'center', textAlign: 'center',
userSelect: 'none', userSelect: 'none',
cursor: 'pointer', cursor: 'pointer',
textWrap: 'nowrap',
WebkitTapHighlightColor: 'transparent', WebkitTapHighlightColor: 'transparent',
}); });