Skip to content

Commit

Permalink
v0.0.65
Browse files Browse the repository at this point in the history
  • Loading branch information
kodjodevf committed Nov 1, 2023
1 parent 92b053e commit c030175
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
14 changes: 11 additions & 3 deletions lib/modules/manga/reader/reader_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -1032,6 +1032,9 @@ class _MangaChapterPageGalleryState
.future)
.then((value) {
_uChapDataPreload[i] = _uChapDataPreload[i]..cropImage = value;
if (mounted) {
setState(() {});
}
});
}
}
Expand All @@ -1045,11 +1048,13 @@ class _MangaChapterPageGalleryState
datas: _uChapDataPreload[index], cropBorder: true)
.future)
.then((value) {
_uChapDataPreload[index] = _uChapDataPreload[index]
..cropImage = value;
_uChapDataPreload[index] = _uChapDataPreload[index]..cropImage = value;
});
if (mounted) {
setState(() {});
}
} else {
if (_uChapDataPreload[index].isLocale! &&
if (!_uChapDataPreload[index].isLocale! &&
_uChapDataPreload[index].cropImage == null) {
ref
.watch(cropBordersProvider(
Expand All @@ -1059,6 +1064,9 @@ class _MangaChapterPageGalleryState
_uChapDataPreload[index] = _uChapDataPreload[index]
..cropImage = value;
});
if (mounted) {
setState(() {});
}
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: mangayomi
description: Free and open source manga reader and anime streaming cross-plateform app inspired by Tachiyomi.
publish_to: 'none'
version: 0.0.6+24
version: 0.0.65+25

environment:
sdk: '>=3.1.3 <4.0.0'
Expand Down

0 comments on commit c030175

Please sign in to comment.