Skip to content

Commit

Permalink
Fix crash in the image navigator (#582)
Browse files Browse the repository at this point in the history
  • Loading branch information
mickael-menu authored Oct 28, 2024
1 parent edd9991 commit f1deb9d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,14 @@ All notable changes to this project will be documented in this file. Take a look

**Warning:** Features marked as *experimental* may change or be removed in a future release without notice. Use with caution.

<!-- ## [Unreleased] -->
## [Unreleased]

### Fixed

#### Navigator

* Fixed crash in the image navigator.


## [3.0.0]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -238,13 +238,12 @@ public class ImageNavigatorFragment private constructor(
override val publicationView: View
get() = requireView()

@Suppress("DEPRECATION")
@Deprecated(
"Use `overflow.value.readingProgression` instead",
replaceWith = ReplaceWith("overflow.value.readingProgression"),
level = DeprecationLevel.ERROR
)
override val readingProgression: PublicationReadingProgression =
override val readingProgression: PublicationReadingProgression get() =
throw NotImplementedError()

@ExperimentalReadiumApi
Expand Down

0 comments on commit f1deb9d

Please sign in to comment.