fix undefined underscore keycode (#3564)

This commit is contained in:
Martin Raifer
2016-11-08 12:13:31 +01:00
committed by GitHub
parent df1d9d5723
commit cc599f3c03
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -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);
});