mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-25 14:46:10 +03:00
minZoomImageRatio should not be less than minPixelRatio to avoid blurry full zoom out. Its worth noting now that several options are 'coupled' but dont have logic which addresses the coupling so as to avoid ill affects from settings that dont make sense for how they are coupled.
This commit is contained in:
parent
9503fac39d
commit
e04813e477
@ -490,8 +490,8 @@ window.OpenSeadragon = window.OpenSeadragon || function( options ){
|
||||
alwaysBlend: false,
|
||||
autoHideControls: true,
|
||||
immediateRender: false,
|
||||
minZoomImageRatio: 0.8,
|
||||
maxZoomPixelRatio: 1.2,
|
||||
minZoomImageRatio: 0.9,
|
||||
maxZoomPixelRatio: 1.1,
|
||||
|
||||
//DEFAULT CONTROL SETTINGS
|
||||
showSequenceControl: true, //SEQUENCE
|
||||
|
Loading…
Reference in New Issue
Block a user