GUACAMOLE-230: Supply oncursor event with new canvas (having correct dimensions).

This commit is contained in:
Michael Jumper
2017-03-04 20:36:24 -08:00
parent c2f7fdb61d
commit 69ff583a07

View File

@@ -423,7 +423,7 @@ Guacamole.Display = function() {
// Fire cursor change event // Fire cursor change event
if (guac_display.oncursor) if (guac_display.oncursor)
guac_display.oncursor(cursor.getCanvas(), hotspotX, hotspotY); guac_display.oncursor(cursor.toCanvas(), hotspotX, hotspotY);
}); });
}; };