Parcourir la source

Merge pull request #12070 from Noshyaar/pr-eh

EditorHelp: use '<' to show inheritance

[ci skip]
Rémi Verschelde il y a 8 ans
Parent
commit
060c5c0e02
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      editor/editor_help.cpp

+ 1 - 1
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;
 			inherits = doc->class_list[inherits].inherits;
 
 
 			if (inherits != "") {
 			if (inherits != "") {
-				class_desc->add_text(" , ");
+				class_desc->add_text(" < ");
 			}
 			}
 		}
 		}