We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53fbc15 commit fb319d2Copy full SHA for fb319d2
systemvm/agent/noVNC/core/rfb.js
@@ -550,6 +550,9 @@ export default class RFB extends EventTargetMixin {
550
RFB.messages.keyEvent(this._sock, this._shiftKey, 1);
551
}
552
} else {
553
+ if (this._language === "jp" && keysym === 65328) {
554
+ keysym = 65509; // Caps lock
555
+ }
556
RFB.messages.keyEvent(this._sock, keysym, down ? 1 : 0);
557
558
0 commit comments