diff options
| author | Franklin Sobrinho | 2015-11-27 20:11:49 -0300 |
|---|---|---|
| committer | Franklin Sobrinho | 2015-11-27 20:11:49 -0300 |
| commit | 493d3c22ca55ff7858b4843cb2627dccbd6abddb (patch) | |
| tree | 117c371d8971833191a0c06cfd28e7312244fc5f /tools/editor/editor_help.cpp | |
| parent | ed4738fbed6d08e85bbf2b60b9dcad64bd4c8753 (diff) | |
| download | godot-493d3c22ca55ff7858b4843cb2627dccbd6abddb.tar.gz godot-493d3c22ca55ff7858b4843cb2627dccbd6abddb.tar.zst godot-493d3c22ca55ff7858b4843cb2627dccbd6abddb.zip | |
Fix editor help scroll to result
Diffstat (limited to 'tools/editor/editor_help.cpp')
| -rw-r--r-- | tools/editor/editor_help.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/editor_help.cpp b/tools/editor/editor_help.cpp index 1a009214a..a5a389012 100644 --- a/tools/editor/editor_help.cpp +++ b/tools/editor/editor_help.cpp @@ -1097,7 +1097,7 @@ void EditorHelp::_help_callback(const String& p_topic) { line=constant_line[name]; } - class_desc->scroll_to_line(line); + class_desc->call_deferred("scroll_to_line", line); } |
