Hi,
I've created a micro patch for /usr/share/pve-manager/root/qemu/vnc-direct.htm I've the problem that the VNC windows are too small and scrollbars are generated. The generated window is exactly 2 pixel to small. I've changed lines 57 and 58 to:
This solved the problem.
MH
I've created a micro patch for /usr/share/pve-manager/root/qemu/vnc-direct.htm I've the problem that the VNC windows are too small and scrollbars are generated. The generated window is exactly 2 pixel to small. I've changed lines 57 and 58 to:
Code:
var offsetw = aw - ow + 2;
var offseth = ah - oh + 2;
MH