mirror of
https://github.com/null2264/yokai.git
synced 2025-06-21 10:44:42 +00:00
Fix Webtoon inversion
This commit is contained in:
parent
f069b530cf
commit
40667d70b4
1 changed files with 2 additions and 2 deletions
|
@ -252,14 +252,14 @@ class WebtoonViewer(val activity: ReaderActivity, val hasMargins: Boolean = fals
|
|||
/**
|
||||
* Scrolls up by [scrollDistance].
|
||||
*/
|
||||
override fun moveToNext() {
|
||||
override fun moveToPrevious() {
|
||||
recycler.smoothScrollBy(0, -scrollDistance)
|
||||
}
|
||||
|
||||
/**
|
||||
* Scrolls down by [scrollDistance].
|
||||
*/
|
||||
override fun moveToPrevious() {
|
||||
override fun moveToNext() {
|
||||
recycler.smoothScrollBy(0, scrollDistance)
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue