Unicode desktop debug.
Ylian Saint-Hilaire committed
Nov 25, 2020 at 09:57 UTC
7eccf9575594d6ccf21a17e9b00400e5a112a33d
1 file changed
+1
public/scripts/agent-desktop-0.0.2.js
+1
@@ -410,6 +410,7 @@ var CreateAgentRemoteDesktop = function (canvasid, scrolldiv) {
410
411
obj.SendKeyUnicode = function (action, val) {
412
if (obj.State != 3) return;
413
+ if (obj.debugmode > 0) { console.log('Sending UnicodeKey ' + val); }
414
obj.send(String.fromCharCode(0x00, obj.InputType.KEYUNICODE, 0x00, 0x07, (action - 1)) + ShortToStr(val));
415
}
416