Fixed type error in copy rect of Layer.

This commit is contained in:
Michael Jumper
2011-07-07 23:28:06 -07:00
parent aea01a5cdb
commit 3684bc5522

View File

@@ -345,7 +345,7 @@ Guacamole.Layer = function(width, height) {
function doCopyRect() {
if (layer.autosize != 0) fitRect(x, y, srcw, srch);
displayContext.drawImage(srcLayer, srcx, srcy, srcw, srch, x, y, srcw, srch);
displayContext.drawImage(srcLayer.getCanvas(), srcx, srcy, srcw, srch, x, y, srcw, srch);
}
// If we ARE the source layer, no need to sync.