Decrement mode keybindings (fixes #1073)

This commit is contained in:
John Firebaugh
2013-03-18 10:23:43 -07:00
parent 813bf420d8
commit 0c2957ca1b
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ iD.modes.AddArea = function(context) {
button: 'area',
title: t('modes.add_area.title'),
description: t('modes.add_area.description'),
key: '4'
key: '3'
};
var behavior = iD.behavior.AddWay(context)
+1 -1
View File
@@ -4,7 +4,7 @@ iD.modes.AddLine = function(context) {
button: 'line',
title: t('modes.add_line.title'),
description: t('modes.add_line.description'),
key: '3'
key: '2'
};
var behavior = iD.behavior.AddWay(context)
+1 -1
View File
@@ -3,7 +3,7 @@ iD.modes.AddPoint = function(context) {
id: 'add-point',
title: t('modes.add_point.title'),
description: t('modes.add_point.description'),
key: '2'
key: '1'
};
var behavior = iD.behavior.Draw(context)