fix error when recalculating overlay width and height

This commit is contained in:
Benjamin 'blindCoder' Schieder 2013-06-25 18:01:38 +02:00
parent 9cbda1bd8f
commit 0150622e78

View File

@ -713,8 +713,8 @@ $.Viewport.prototype = {
return new $.Rect(
coordA.x,
coordA.y,
coordA.x + coordB.x,
coordA.y + coordB.y
coordB.x,
coordB.y
);
}
};