mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-22 05:06:09 +03:00
Make setFlip() update the navigator
Makes setFlip() raise a bounds change, and makes the navigator copy the image flip in addition to the other properties, when receiving the bounds signal.
This commit is contained in:
parent
eebfdc1391
commit
e6725871b8
@ -452,6 +452,7 @@ $.extend( $.Navigator.prototype, $.EventSource.prototype, $.Viewer.prototype, /*
|
|||||||
myItem.setWidth(bounds.width, immediately);
|
myItem.setWidth(bounds.width, immediately);
|
||||||
myItem.setRotation(theirItem.getRotation(), immediately);
|
myItem.setRotation(theirItem.getRotation(), immediately);
|
||||||
myItem.setClip(theirItem.getClip());
|
myItem.setClip(theirItem.getClip());
|
||||||
|
myItem.setFlip(theirItem.getFlip());
|
||||||
},
|
},
|
||||||
|
|
||||||
// private
|
// private
|
||||||
|
@ -866,6 +866,7 @@ $.extend($.TiledImage.prototype, $.EventSource.prototype, /** @lends OpenSeadrag
|
|||||||
setFlip: function(flip) {
|
setFlip: function(flip) {
|
||||||
this.flipped = !!flip;
|
this.flipped = !!flip;
|
||||||
this._needsDraw = true;
|
this._needsDraw = true;
|
||||||
|
this._raiseBoundsChange();
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user