mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 05:07:41 +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;
|
||||
cursorHotspotX = x;
|
||||
cursorHotspotY = y;
|
||||
redrawCursor(cursorRectX, cursorRectY);
|
||||
redrawCursor(
|
||||
cursorRectX + cursorHotspotX,
|
||||
cursorRectY + cursorHotspotY
|
||||
);
|
||||
};
|
||||
image.src = "data:image/png;base64," + data
|
||||
|
||||
|
Reference in New Issue
Block a user