diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-06-08 19:00:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-08 19:00:41 +0200 |
commit | 5793988b8da27e459a36482f9658a936d3e26286 (patch) | |
tree | d360e4ac6ae9e342747cbce5a0af792740dcc423 /editor/plugins | |
parent | 006cb7def4918ec61df8bfb7d5e672eb8ee71258 (diff) | |
parent | d4c165d8c7606374ec201b6828aacb0405fbd17c (diff) |
Merge pull request #49429 from Paulb23/un_shortcut_typo
Fix TextEditor redo shortcut typo
Diffstat (limited to 'editor/plugins')
-rw-r--r-- | editor/plugins/text_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/text_editor.cpp b/editor/plugins/text_editor.cpp index 1edcbd2cc9..e1c6e61a0b 100644 --- a/editor/plugins/text_editor.cpp +++ b/editor/plugins/text_editor.cpp @@ -538,7 +538,7 @@ TextEditor::TextEditor() { edit_menu->get_popup()->connect("id_pressed", callable_mp(this, &TextEditor::_edit_option)); edit_menu->get_popup()->add_shortcut(ED_GET_SHORTCUT("ui_undo"), EDIT_UNDO); - edit_menu->get_popup()->add_shortcut(ED_GET_SHORTCUT("un_redo"), EDIT_REDO); + edit_menu->get_popup()->add_shortcut(ED_GET_SHORTCUT("ui_redo"), EDIT_REDO); edit_menu->get_popup()->add_separator(); edit_menu->get_popup()->add_shortcut(ED_GET_SHORTCUT("ui_cut"), EDIT_CUT); edit_menu->get_popup()->add_shortcut(ED_GET_SHORTCUT("ui_copy"), EDIT_COPY); |