-
-
Notifications
You must be signed in to change notification settings - Fork 6k
Closed
Description
Pressing Meta (Win) key in Firefox 12/Debian Linux unstable makes the map zoomed out. This behaviour should be disabled, because the Meta key can be used for global keyboard shortcuts.
Code:
src/map/handler/Map.Keyboard.js
// list of e.keyCode values for particular actions
keyCodes: {
left: [37],
right: [39],
down: [40],
up: [38],
zoomIn: [187, 61, 107],
zoomOut: [189, 109, 0]
},
The Meta key has keycode 0 in FF/Linux.