mirror of
https://github.com/retspen/webvirtcloud.git
synced 2026-04-26 16:05:58 +03:00
[GH-ISSUE #274] Cursor not calibrated #177
Labels
No labels
bug
enhancement
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/webvirtcloud#177
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @FrancescoFdd5 on GitHub (Dec 27, 2019).
Original GitHub issue: https://github.com/retspen/webvirtcloud/issues/274
The mouse cursor is not calibrated correctly, I have to manually change the XML to make it work.
I took the piece of XML from webvirtmgr and it worked after all
This is the XML:
<input type='mouse' bus='ps2'> <alias name='input0'/> </input> <input type='tablet' bus='usb'> <alias name='input1'/> <address type='usb' bus='0' port='1'/> </input> <input type='keyboard' bus='ps2'> <alias name='input2'/> </input>Hope you can solve this problem
@catborise commented on GitHub (Dec 27, 2019):
mouse calibration is related with, tablet and mouse devices. i will check it.
Is Guest os windows?
if it is windows OS, please update virtio drivers...
@FrancescoFdd5 commented on GitHub (Dec 27, 2019):
Yes is a Windows OS, i have already update the driver
This is the bug
https://imgur.com/a/5Tzwc2k
@catborise commented on GitHub (Dec 27, 2019):
there ara two 3 types of mouse/tablet driver. 1. ps2, 2. usb, 3. virtio
ps2 is old one. not supported by all machines.
usb is not supported all types of machines
virtio is new one.
default one is ps2. there are some bugs i think with libvirt API, i think.
normally virtio works as expected after virtio driver installation but libvirt adds second mouse device beside virtio mouse which is ps2 mouse.
i will report it to libvirt and make the mouse driver changeable...
@FrancescoFdd5 commented on GitHub (Jan 11, 2020):
Any news?
In windows 10 if i change the xml (see first post) it resolve the problem; but in Windows 7 I can't resolve it.