#59 Remove double-bind of keypresses Z and Y

Patch for Issue #59. https://github.com/SVG-Edit/svgedit/issues/59
master
Jordan 2016-01-19 17:00:59 -08:00
parent b8fc4eef01
commit cac6202e58
1 changed files with 2 additions and 2 deletions

View File

@ -4494,8 +4494,8 @@ TODOS
{sel: '#tool_move_bottom', fn: moveToBottomSelected, evt: 'click', key: 'ctrl+shift+['},
{sel: '#tool_topath', fn: convertToPath, evt: 'click'},
{sel: '#tool_make_link,#tool_make_link_multi', fn: makeHyperlink, evt: 'click'},
{sel: '#tool_undo', fn: clickUndo, evt: 'click', key: ['Z', true]},
{sel: '#tool_redo', fn: clickRedo, evt: 'click', key: ['Y', true]},
{sel: '#tool_undo', fn: clickUndo, evt: 'click'},
{sel: '#tool_redo', fn: clickRedo, evt: 'click'},
{sel: '#tool_clone,#tool_clone_multi', fn: clickClone, evt: 'click', key: ['D', true]},
{sel: '#tool_group_elements', fn: clickGroup, evt: 'click', key: ['G', true]},
{sel: '#tool_ungroup', fn: clickGroup, evt: 'click'},