Skip to content

Commit

Permalink
Change from Y to Shift-Z for "redo". Y was already assigned to Simpli…
Browse files Browse the repository at this point in the history
…fy. Whoops.
  • Loading branch information
stevage authored and tomhughes committed Mar 9, 2011
1 parent 40ef207 commit 7fb43d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions net/systemeD/potlatch2/controller/ControllerState.as
Expand Up @@ -67,8 +67,8 @@ package net.systemeD.potlatch2.controller {
case 68: controller.map.paint.alpha=1.3-controller.map.paint.alpha; return null; // D - dim
case 83: SaveManager.saveChanges(); break; // S - save
case 84: controller.tagViewer.togglePanel(); return null; // T - toggle tags panel
case 90: MainUndoStack.getGlobalStack().undo(); return null; // Z - undo
case 89: MainUndoStack.getGlobalStack().redo(); return null; // Y - redo
case 90: if (!event.shiftKey) { MainUndoStack.getGlobalStack().undo(); return null;}// Z - undo
else { MainUndoStack.getGlobalStack().redo(); return null; } // Shift-Z - redo
case Keyboard.ESCAPE: revertSelection(); break; // ESC - revert to server version
case Keyboard.NUMPAD_ADD: // + - add tag
case 187: controller.tagViewer.selectAdvancedPanel(); // |
Expand Down

0 comments on commit 7fb43d9

Please sign in to comment.