Remove keysym names from keysymdef.js

They were incomplete and turned off in most cases so they served
little use besides adding complexity.
This commit is contained in:
Pierre Ossman
2017-01-24 12:07:26 +01:00
parent 9076defaca
commit 524d67f283
10 changed files with 174 additions and 198 deletions
+1 -1
View File
@@ -659,7 +659,7 @@ RFB.prototype = {
Log.Error('Unable to find a xt scancode for code = ' + keyevent.code);
}
} else {
keysym = keyevent.keysym.keysym;
keysym = keyevent.keysym;
RFB.messages.keyEvent(this._sock, keysym, down);
}
},