summaryrefslogtreecommitdiff
path: root/editor
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2017-10-13 15:05:57 +0200
committerGitHub <noreply@github.com>2017-10-13 15:05:57 +0200
commit060c5c0e026364d5d8db43aea00fa3dd359a2237 (patch)
tree26e5839c076b66c0b50f4a66126523dbbe18e5b2 /editor
parent36ca9c9251918d91b29d0d91ece83087a8f186e6 (diff)
parent98322a8876dc99b680da9491ad60ea6cb568fb3c (diff)
Merge pull request #12070 from Noshyaar/pr-eh
EditorHelp: use '<' to show inheritance [ci skip]
Diffstat (limited to 'editor')
-rw-r--r--editor/editor_help.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_help.cpp b/editor/editor_help.cpp
index cb94ea72d1..20ffbde378 100644
--- a/editor/editor_help.cpp
+++ b/editor/editor_help.cpp
@@ -694,7 +694,7 @@ Error EditorHelp::_goto_desc(const String &p_class, int p_vscr) {
inherits = doc->class_list[inherits].inherits;
if (inherits != "") {
- class_desc->add_text(" , ");
+ class_desc->add_text(" < ");
}
}