diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-10-13 15:05:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-13 15:05:57 +0200 |
commit | 060c5c0e026364d5d8db43aea00fa3dd359a2237 (patch) | |
tree | 26e5839c076b66c0b50f4a66126523dbbe18e5b2 /editor | |
parent | 36ca9c9251918d91b29d0d91ece83087a8f186e6 (diff) | |
parent | 98322a8876dc99b680da9491ad60ea6cb568fb3c (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.cpp | 2 |
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(" < "); } } |