mirror of
https://github.com/kodjodevf/mangayomi.git
synced 2026-04-20 10:52:05 +00:00
Don't allow zooming
When these methods were used to display images (migration screen, history screen, etc) the images (anime/manga covers and extension icons) were zoomable. You could (on a touch device) pinch to zoom. And with the mouse you could get your cursor an on image and scroll up to zoom out and scroll down to zoom in. This was not necessary confusing for the user.
This commit is contained in:
parent
4d39044511
commit
49f77febe4
1 changed files with 2 additions and 2 deletions
|
|
@ -20,7 +20,7 @@ Widget cachedNetworkImage({
|
|||
height: height,
|
||||
fit: fit,
|
||||
filterQuality: FilterQuality.medium,
|
||||
mode: ExtendedImageMode.gesture,
|
||||
mode: ExtendedImageMode.none,
|
||||
handleLoadingProgress: true,
|
||||
loadStateChanged: (state) {
|
||||
if (state.extendedImageLoadState == LoadState.failed) {
|
||||
|
|
@ -53,7 +53,7 @@ Widget cachedCompressedNetworkImage({
|
|||
height: height,
|
||||
fit: fit,
|
||||
filterQuality: FilterQuality.medium,
|
||||
mode: ExtendedImageMode.gesture,
|
||||
mode: ExtendedImageMode.none,
|
||||
handleLoadingProgress: true,
|
||||
clearMemoryCacheWhenDispose: true,
|
||||
loadStateChanged: (state) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue