Fix Script Editor stealing focus on class search text changed
This commit is contained in:
parent
0fb99306ff
commit
6e1bcb2b44
1 changed files with 3 additions and 4 deletions
|
@ -252,8 +252,8 @@ void EditorHelpSearch::_confirmed() {
|
|||
return;
|
||||
|
||||
String mdata = ti->get_metadata(0);
|
||||
EditorNode::get_singleton()->set_visible_editor(EditorNode::EDITOR_SCRIPT);
|
||||
emit_signal("go_to_help", mdata);
|
||||
EditorNode::get_singleton()->call("_editor_select", EditorNode::EDITOR_SCRIPT); // in case EditorHelpSearch beeen invoked on top of other editor window
|
||||
// go to that
|
||||
hide();
|
||||
}
|
||||
|
@ -361,8 +361,8 @@ void EditorHelpIndex::_tree_item_selected() {
|
|||
if (!s)
|
||||
return;
|
||||
|
||||
EditorNode::get_singleton()->set_visible_editor(EditorNode::EDITOR_SCRIPT);
|
||||
emit_signal("open_class", s->get_text(0));
|
||||
EditorNode::get_singleton()->call("_editor_select", EditorNode::EDITOR_SCRIPT);
|
||||
hide();
|
||||
|
||||
//_goto_desc(s->get_text(0));
|
||||
|
@ -374,7 +374,6 @@ void EditorHelpIndex::select_class(const String &p_class) {
|
|||
return;
|
||||
tree_item_map[p_class]->select(0);
|
||||
class_list->ensure_cursor_is_visible();
|
||||
EditorNode::get_singleton()->call("_editor_select", EditorNode::EDITOR_SCRIPT); // in case EditorHelpIndex beeen invoked on top of other editor window
|
||||
}
|
||||
|
||||
void EditorHelpIndex::popup() {
|
||||
|
@ -1279,7 +1278,7 @@ Error EditorHelp::_goto_desc(const String &p_class, int p_vscr) {
|
|||
void EditorHelp::_request_help(const String &p_string) {
|
||||
Error err = _goto_desc(p_string);
|
||||
if (err == OK) {
|
||||
EditorNode::get_singleton()->call("_editor_select", EditorNode::EDITOR_SCRIPT);
|
||||
EditorNode::get_singleton()->set_visible_editor(EditorNode::EDITOR_SCRIPT);
|
||||
}
|
||||
//100 palabras
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue