diff options
author | Juan Linietsky <reduzio@gmail.com> | 2014-09-17 10:46:20 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2014-09-17 10:46:20 -0300 |
commit | 24b545d6eaec73626662b7a3b9d47cb1908e3b02 (patch) | |
tree | 0bdaaca001487da507495de5e602d197b24ba958 /tools/editor | |
parent | 357713b261ab7b48866713fa9111c95b94668eac (diff) | |
parent | 4a59f683d3772edd9233e93e1bee9c99400502f4 (diff) |
Merge pull request #544 from marynate/PR-fix-help-history
Fix bug help history overwrote by tree item selected call back
Diffstat (limited to 'tools/editor')
-rw-r--r-- | tools/editor/editor_help.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/tools/editor/editor_help.cpp b/tools/editor/editor_help.cpp index b7e708e360..819da4bb45 100644 --- a/tools/editor/editor_help.cpp +++ b/tools/editor/editor_help.cpp @@ -418,7 +418,6 @@ void EditorHelp::_class_list_select(const String& p_select) { void EditorHelp::_class_desc_select(const String& p_select) { if (p_select.begins_with("#")) { - _goto_desc(p_select.substr(1,p_select.length())); return; } else if (p_select.begins_with("@")) { @@ -481,9 +480,11 @@ Error EditorHelp::_goto_desc(const String& p_class,bool p_update_history,int p_v if (tree_item_map.has(p_class)) { + select_locked = true; tree_item_map[p_class]->select(0); class_list->ensure_cursor_is_visible(); } + class_desc->show(); //tabs->set_current_tab(PAGE_CLASS_DESC); edited_class->set_pressed(true); @@ -509,7 +510,6 @@ Error EditorHelp::_goto_desc(const String& p_class,bool p_update_history,int p_v class_desc->clear(); method_line.clear(); - edited_class->set_text(p_class); //edited_class->show(); @@ -923,7 +923,7 @@ Error EditorHelp::_goto_desc(const String& p_class,bool p_update_history,int p_v return OK; } -void EditorHelp::_request_help(const String& p_string) { +void EditorHelp::_request_help(const String& p_string) { Error err = _goto_desc(p_string); if (err==OK) { editor->call("_editor_select",3); @@ -1288,8 +1288,10 @@ void EditorHelp::_notification(int p_what) { void EditorHelp::_tree_item_selected() { - if (select_locked) + if (select_locked) { + select_locked = false; return; + } TreeItem *s=class_list->get_selected(); if (!s) return; @@ -1337,7 +1339,6 @@ EditorHelp::EditorHelp(EditorNode *p_editor) { edited_class->hide(); b->set_toggle_mode(true); b->connect("pressed",this,"_button_pressed",make_binds(PAGE_CLASS_DESC)); - edited_class->hide(); b = memnew( Button ); b->set_text("Search in Classes"); |