mirror of
https://github.com/rustdesk/rustdesk
synced 2026-04-21 13:27:19 +00:00
fix: sciter, cursor position mismatch (#13629)
Signed-off-by: fufesou <linlong1266@gmail.com>
This commit is contained in:
parent
33e1493932
commit
ae06f27372
1 changed files with 3 additions and 1 deletions
|
|
@ -90,8 +90,10 @@ function adaptDisplay() {
|
|||
}
|
||||
if (isRemoteLinux()) {
|
||||
cursor_scale = display_scale * display_remote_scale;
|
||||
if (cursor_scale <= 0.0001) cursor_scale = 1.;
|
||||
} else {
|
||||
cursor_scale = display_scale;
|
||||
}
|
||||
if (cursor_scale <= 0.0001) cursor_scale = 1.;
|
||||
refreshCursor();
|
||||
handler.style.set {
|
||||
width: w / scaleFactor + "px",
|
||||
|
|
|
|||
Loading…
Reference in a new issue