mirror of
				https://github.com/mihonapp/mihon.git
				synced 2025-10-30 22:07:57 +01:00 
			
		
		
		
	Fix crash in single-page chapters
This commit is contained in:
		| @@ -84,6 +84,7 @@ import timber.log.Timber | ||||
| import uy.kohesive.injekt.injectLazy | ||||
| import java.io.File | ||||
| import kotlin.math.abs | ||||
| import kotlin.math.max | ||||
|  | ||||
| /** | ||||
|  * Activity containing the reader of Tachiyomi. This activity is mostly a container of the | ||||
| @@ -729,7 +730,8 @@ class ReaderActivity : BaseRxActivity<ReaderActivityBinding, ReaderPresenter>() | ||||
|         } | ||||
|  | ||||
|         // Set slider progress | ||||
|         binding.pageSlider.valueTo = pages.lastIndex.toFloat() | ||||
|         binding.pageSlider.isEnabled = pages.size > 1 | ||||
|         binding.pageSlider.valueTo = max(pages.lastIndex.toFloat(), 1f) | ||||
|         binding.pageSlider.value = page.index.toFloat() | ||||
|     } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user