mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-10 08:38:20 +00:00
[client] spice: fix cursor position mismatch with UI scaling
This commit is contained in:
parent
1727c7726b
commit
4051cc6f93
@ -979,8 +979,8 @@ static void handleMouseNormal(double ex, double ey)
|
||||
|
||||
struct DoublePoint guest =
|
||||
{
|
||||
.x = (g_cursor.pos.x - g_state.dstRect.x) * g_cursor.scale.x * g_cursor.dpiScale,
|
||||
.y = (g_cursor.pos.y - g_state.dstRect.y) * g_cursor.scale.y * g_cursor.dpiScale
|
||||
.x = (g_cursor.pos.x - g_state.dstRect.x) * g_cursor.scale.x,
|
||||
.y = (g_cursor.pos.y - g_state.dstRect.y) * g_cursor.scale.y
|
||||
};
|
||||
|
||||
/* add the difference to the offset */
|
||||
|
Loading…
Reference in New Issue
Block a user