mirror of
				https://github.com/mihonapp/mihon.git
				synced 2025-10-31 06:17:57 +01:00 
			
		
		
		
	Recreate webtoon SSIV when crop borders setting changes (fixes #4734)
This commit is contained in:
		| @@ -66,6 +66,7 @@ class WebtoonPageHolder( | ||||
|      * Image view that supports subsampling on zoom. | ||||
|      */ | ||||
|     private var subsamplingImageView: SubsamplingScaleImageView? = null | ||||
|     private var cropBorders: Boolean = false | ||||
|  | ||||
|     /** | ||||
|      * Simple image view only used on GIFs. | ||||
| @@ -360,17 +361,20 @@ class WebtoonPageHolder( | ||||
|      * Initializes a subsampling scale view. | ||||
|      */ | ||||
|     private fun initSubsamplingImageView(): SubsamplingScaleImageView { | ||||
|         if (subsamplingImageView != null) return subsamplingImageView!! | ||||
|  | ||||
|         val config = viewer.config | ||||
|  | ||||
|         if (subsamplingImageView != null && config.imageCropBorders == cropBorders) { | ||||
|             return subsamplingImageView!! | ||||
|         } | ||||
|  | ||||
|         cropBorders = config.imageCropBorders | ||||
|         subsamplingImageView = WebtoonSubsamplingImageView(context).apply { | ||||
|             setMaxTileSize(viewer.activity.maxBitmapSize) | ||||
|             setPanLimit(SubsamplingScaleImageView.PAN_LIMIT_INSIDE) | ||||
|             setMinimumScaleType(SubsamplingScaleImageView.SCALE_TYPE_FIT_WIDTH) | ||||
|             setMinimumDpi(90) | ||||
|             setMinimumTileDpi(180) | ||||
|             setCropBorders(config.imageCropBorders) | ||||
|             setCropBorders(cropBorders) | ||||
|             setOnImageEventListener( | ||||
|                 object : SubsamplingScaleImageView.DefaultOnImageEventListener() { | ||||
|                     override fun onReady() { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user