mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-07 13:41:21 +00:00
Fixed issue with moving cursor when icon updates.
This commit is contained in:
@@ -309,7 +309,10 @@ function GuacamoleClient(display, tunnel) {
|
|||||||
cursorImage = image;
|
cursorImage = image;
|
||||||
cursorHotspotX = x;
|
cursorHotspotX = x;
|
||||||
cursorHotspotY = y;
|
cursorHotspotY = y;
|
||||||
redrawCursor(cursorRectX, cursorRectY);
|
redrawCursor(
|
||||||
|
cursorRectX + cursorHotspotX,
|
||||||
|
cursorRectY + cursorHotspotY
|
||||||
|
);
|
||||||
};
|
};
|
||||||
image.src = "data:image/png;base64," + data
|
image.src = "data:image/png;base64," + data
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user