mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-22 16:19:48 +02:00
fix undefined underscore keycode (#3564)
This commit is contained in:
+1
-1
@@ -75,7 +75,7 @@ export function uiZoom(context) {
|
||||
keybinding.on([key, '⇧' + key], zoomIn);
|
||||
keybinding.on([uiCmd('⌘' + key), uiCmd('⌘⇧' + key)], zoomInFurther);
|
||||
});
|
||||
_.each(['-','ffminus','_','dash'], function(key) {
|
||||
_.each(['-','ffminus','dash'], function(key) {
|
||||
keybinding.on([key, '⇧' + key], zoomOut);
|
||||
keybinding.on([uiCmd('⌘' + key), uiCmd('⌘⇧' + key)], zoomOutFurther);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user