summaryrefslogtreecommitdiffstats
path: root/editor/editor_help.cpp
diff options
context:
space:
mode:
authorkobewi <kobewi4e@gmail.com>2022-10-22 23:54:37 +0200
committerkobewi <kobewi4e@gmail.com>2024-04-25 23:22:47 +0200
commit3a1246c198ac819edaf0d3f0c52f2255af0c8977 (patch)
tree2e6ef587fd2743dad8176881e4454aa9f40b3468 /editor/editor_help.cpp
parent11d3768132582d192b8464769f26b493ae822321 (diff)
downloadredot-engine-3a1246c198ac819edaf0d3f0c52f2255af0c8977.tar.gz
Store line change in script navigation history
Diffstat (limited to 'editor/editor_help.cpp')
-rw-r--r--editor/editor_help.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/editor_help.cpp b/editor/editor_help.cpp
index 5cc09b7104..63c2ebe3d9 100644
--- a/editor/editor_help.cpp
+++ b/editor/editor_help.cpp
@@ -287,6 +287,7 @@ void EditorHelp::_class_desc_select(const String &p_select) {
if (table->has(link)) {
// Found in the current page.
if (class_desc->is_ready()) {
+ emit_signal(SNAME("request_save_history"));
class_desc->scroll_to_paragraph((*table)[link]);
} else {
scroll_to = (*table)[link];
@@ -3077,6 +3078,7 @@ void EditorHelp::_bind_methods() {
ClassDB::bind_method("_help_callback", &EditorHelp::_help_callback);
ADD_SIGNAL(MethodInfo("go_to_help"));
+ ADD_SIGNAL(MethodInfo("request_save_history"));
}
void EditorHelp::init_gdext_pointers() {