Bugfix/manga reader (#582)
* Fixed an issue where you could change paging direction then switch to Up/Down mode and paging direction would still be present * Removed some code for a feature I'm not implementing anymore
This commit is contained in:
parent
364c57925e
commit
b452409a4a
2 changed files with 1 additions and 8 deletions
|
|
@ -953,11 +953,10 @@ export class MangaReaderComponent implements OnInit, AfterViewInit, OnDestroy {
|
|||
switch(this.readerMode) {
|
||||
case READER_MODE.MANGA_LR:
|
||||
this.readerMode = READER_MODE.MANGA_UD;
|
||||
this.pagingDirection = PAGING_DIRECTION.FORWARD;
|
||||
break;
|
||||
case READER_MODE.MANGA_UD:
|
||||
this.readerMode = READER_MODE.WEBTOON;
|
||||
// Temp disable ability to use webtoon
|
||||
//this.readerMode = READER_MODE.MANGA_LR;
|
||||
break;
|
||||
case READER_MODE.WEBTOON:
|
||||
this.readerMode = READER_MODE.MANGA_LR;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue