What steps will reproduce the problem?
1. Using the Timeline._Band.prototype.pixelOffsetToDate
(it's used by Timeline._Band.prototype.scrollToCenter())
What is the expected output?
Correct date ( date corresponding to pixels - this._viewOffset)
What do you see instead?
date corresponding to pixels + this._viewOffset
Fix:
Timeline._Band.prototype.pixelOffsetToDate = function(pixels) {
return this._ether.pixelOffsetToDate(pixels - this._viewOffset);
};
Version used is 2.3.0
Original issue reported on code.google.com by Julien.C...@gmail.com on 10 Mar 2011 at 1:29
Original issue reported on code.google.com by
Julien.C...@gmail.com
on 10 Mar 2011 at 1:29