mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-07 21:51:23 +00:00
GUAC-998: Add left/right meta to list of possible "Alt" keys. Some systems interpret Shift+Alt as Shift+Meta.
This commit is contained in:
@@ -63,7 +63,8 @@ angular.module('client').controller('clientController', ['$scope', '$routeParams
|
||||
* several possible keysysms for each key.
|
||||
*/
|
||||
var SHIFT_KEYS = {0xFFE1 : true, 0xFFE2 : true},
|
||||
ALT_KEYS = {0xFFE9 : true, 0xFFEA : true, 0xFE03: true},
|
||||
ALT_KEYS = {0xFFE9 : true, 0xFFEA : true, 0xFE03 : true,
|
||||
0xFFE7 : true, 0xFFE8 : true},
|
||||
CTRL_KEYS = {0xFFE3 : true, 0xFFE4 : true},
|
||||
MENU_KEYS = angular.extend({}, SHIFT_KEYS, ALT_KEYS, CTRL_KEYS);
|
||||
|
||||
|
Reference in New Issue
Block a user