move copy-coords key to R

This commit is contained in:
HF 2020-04-29 04:38:36 +02:00
parent e1783bd53c
commit 5478faebd5
2 changed files with 2 additions and 2 deletions

View File

@ -65,7 +65,7 @@ const HelpModal = () => (
<p style={textStyle}>Click a color in palette to select</p>
<p style={textStyle}>Press <kbd>G</kbd> to toggle grid</p>
<p style={textStyle}>Press <kbd>X</kbd> to toggle showing of pixel activity</p>
<p style={textStyle}>Press <kbd>C</kbd> to copy coordinates</p>
<p style={textStyle}>Press <kbd>R</kbd> to copy coordinates</p>
<p style={textStyle}>Press <kbd>Q</kbd> or <kbd>E</kbd> to zoom</p>
<p style={textStyle}>Press <kbd>W</kbd>,<kbd>A</kbd>,<kbd>S</kbd>, <kbd>D</kbd> to move</p>
<p style={textStyle}>Press <kbd></kbd>,<kbd></kbd>,<kbd></kbd>, <kbd></kbd> to move</p>

View File

@ -32,7 +32,7 @@ function onKeyPress(event: KeyboardEvent) {
case 'm':
store.dispatch(toggleMute());
break;
case 'c': {
case 'r': {
const state = store.getState();
const { hover } = state.gui;
const text = hover.join('_');