Skip to content
This repository has been archived by the owner on May 19, 2020. It is now read-only.

Commit

Permalink
fix(src): correct redo shortcut
Browse files Browse the repository at this point in the history
Signed-off-by: irmerk <[email protected]>
  • Loading branch information
jolanglinais committed Mar 12, 2020
1 parent 4b89ac9 commit 0f1ad73
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/FormattingToolbar/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -686,7 +686,7 @@ export default class FormatToolbar extends React.Component {
{
this.renderHistoryButton(
redoIcon.type(),
undoIcon.label(),
redoIcon.label(),
redoIcon.icon,
redoIcon.height(),
redoIcon.width(),
Expand Down
2 changes: 1 addition & 1 deletion src/icons/navigation-right.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import * as tips from '../FormattingToolbar/toolbarTooltip';

export const type = () => 'redo';

export const label = () => `Redo (${tips.MOD}+Y)`;
export const label = () => `Redo (${tips.MOD}+Shift+Z)`;

export const height = () => '25px';

Expand Down

0 comments on commit 0f1ad73

Please sign in to comment.