From 0c2957ca1b5ae143fb00dd51c70090c59f9200bd Mon Sep 17 00:00:00 2001 From: John Firebaugh Date: Mon, 18 Mar 2013 10:23:43 -0700 Subject: [PATCH] Decrement mode keybindings (fixes #1073) --- js/id/modes/add_area.js | 2 +- js/id/modes/add_line.js | 2 +- js/id/modes/add_point.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/js/id/modes/add_area.js b/js/id/modes/add_area.js index 18d51f018..0efc78103 100644 --- a/js/id/modes/add_area.js +++ b/js/id/modes/add_area.js @@ -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) diff --git a/js/id/modes/add_line.js b/js/id/modes/add_line.js index ef5a43c0d..d852c6b4d 100644 --- a/js/id/modes/add_line.js +++ b/js/id/modes/add_line.js @@ -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) diff --git a/js/id/modes/add_point.js b/js/id/modes/add_point.js index 47bdafae8..a3d85f618 100644 --- a/js/id/modes/add_point.js +++ b/js/id/modes/add_point.js @@ -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)