OpenSeadragonPaperjsOverlay
OpenSeadragonPaperjsOverlay copied to clipboard
Flickering rendering with newer versions of paper.js
Hi, I realize this is not an issue of OSD paperjsoverlay but of paper.js itself. I just tried with version 0.11.4 and the example uses version 0.9.25. With the newer version there is a flickering of the circles every time there is a zoom operation. I don't if it is due to OSD or paper.js.
I have the same issue...
Still the same with version 0.11.5
Hi, If you add view.update(); on version 0.12.0 of paper-full.js at line 2708 it resolves the issue for me. Example :
_changed: function(flags, item) {
if (flags & 1) {
var view = this._view;
if (view) {
view._needsUpdate = true;
if (!view._requested && view._autoUpdate)
view.requestUpdate();
view.update();
}
}
This is still an issue in the current version (0.12.4) and the fix from @gatounec still works. Why hasn't this been fixed in the last year?