Make the text editor consistent with the script editor
This commit is contained in:
parent
74c32faa78
commit
12c84836b7
1 changed files with 15 additions and 15 deletions
|
@ -612,21 +612,6 @@ TextEditor::TextEditor() {
|
||||||
|
|
||||||
edit_hb = memnew(HBoxContainer);
|
edit_hb = memnew(HBoxContainer);
|
||||||
|
|
||||||
search_menu = memnew(MenuButton);
|
|
||||||
search_menu->set_shortcut_context(this);
|
|
||||||
edit_hb->add_child(search_menu);
|
|
||||||
search_menu->set_text(TTR("Search"));
|
|
||||||
search_menu->set_switch_on_hover(true);
|
|
||||||
search_menu->get_popup()->connect("id_pressed", callable_mp(this, &TextEditor::_edit_option));
|
|
||||||
|
|
||||||
search_menu->get_popup()->add_shortcut(ED_GET_SHORTCUT("script_text_editor/find"), SEARCH_FIND);
|
|
||||||
search_menu->get_popup()->add_shortcut(ED_GET_SHORTCUT("script_text_editor/find_next"), SEARCH_FIND_NEXT);
|
|
||||||
search_menu->get_popup()->add_shortcut(ED_GET_SHORTCUT("script_text_editor/find_previous"), SEARCH_FIND_PREV);
|
|
||||||
search_menu->get_popup()->add_shortcut(ED_GET_SHORTCUT("script_text_editor/replace"), SEARCH_REPLACE);
|
|
||||||
search_menu->get_popup()->add_separator();
|
|
||||||
search_menu->get_popup()->add_shortcut(ED_GET_SHORTCUT("script_text_editor/find_in_files"), SEARCH_IN_FILES);
|
|
||||||
search_menu->get_popup()->add_shortcut(ED_GET_SHORTCUT("script_text_editor/replace_in_files"), REPLACE_IN_FILES);
|
|
||||||
|
|
||||||
edit_menu = memnew(MenuButton);
|
edit_menu = memnew(MenuButton);
|
||||||
edit_menu->set_shortcut_context(this);
|
edit_menu->set_shortcut_context(this);
|
||||||
edit_hb->add_child(edit_menu);
|
edit_hb->add_child(edit_menu);
|
||||||
|
@ -685,6 +670,21 @@ TextEditor::TextEditor() {
|
||||||
add_syntax_highlighter(highlighter);
|
add_syntax_highlighter(highlighter);
|
||||||
set_syntax_highlighter(plain_highlighter);
|
set_syntax_highlighter(plain_highlighter);
|
||||||
|
|
||||||
|
search_menu = memnew(MenuButton);
|
||||||
|
search_menu->set_shortcut_context(this);
|
||||||
|
edit_hb->add_child(search_menu);
|
||||||
|
search_menu->set_text(TTR("Search"));
|
||||||
|
search_menu->set_switch_on_hover(true);
|
||||||
|
search_menu->get_popup()->connect("id_pressed", callable_mp(this, &TextEditor::_edit_option));
|
||||||
|
|
||||||
|
search_menu->get_popup()->add_shortcut(ED_GET_SHORTCUT("script_text_editor/find"), SEARCH_FIND);
|
||||||
|
search_menu->get_popup()->add_shortcut(ED_GET_SHORTCUT("script_text_editor/find_next"), SEARCH_FIND_NEXT);
|
||||||
|
search_menu->get_popup()->add_shortcut(ED_GET_SHORTCUT("script_text_editor/find_previous"), SEARCH_FIND_PREV);
|
||||||
|
search_menu->get_popup()->add_shortcut(ED_GET_SHORTCUT("script_text_editor/replace"), SEARCH_REPLACE);
|
||||||
|
search_menu->get_popup()->add_separator();
|
||||||
|
search_menu->get_popup()->add_shortcut(ED_GET_SHORTCUT("script_text_editor/find_in_files"), SEARCH_IN_FILES);
|
||||||
|
search_menu->get_popup()->add_shortcut(ED_GET_SHORTCUT("script_text_editor/replace_in_files"), REPLACE_IN_FILES);
|
||||||
|
|
||||||
MenuButton *goto_menu = memnew(MenuButton);
|
MenuButton *goto_menu = memnew(MenuButton);
|
||||||
goto_menu->set_shortcut_context(this);
|
goto_menu->set_shortcut_context(this);
|
||||||
edit_hb->add_child(goto_menu);
|
edit_hb->add_child(goto_menu);
|
||||||
|
|
Loading…
Reference in a new issue