summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2015-11-28 00:15:02 +0100
committerRémi Verschelde <remi@verschelde.fr>2015-11-28 00:15:02 +0100
commit274b17b63611ad678fc91ab06f264343914add39 (patch)
tree391d02a8ff88d5aee21141cec0dd382515efb0b9 /tools
parentd2f9155995841f2c8afc917ca900e43269810688 (diff)
parent493d3c22ca55ff7858b4843cb2627dccbd6abddb (diff)
Merge pull request #2932 from TheHX/pr-editor-help-scroll
Fix editor help scroll to result
Diffstat (limited to 'tools')
-rw-r--r--tools/editor/editor_help.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/editor_help.cpp b/tools/editor/editor_help.cpp
index 1a009214ac..a5a3890129 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);
}