diff options
Diffstat (limited to 'editor/editor_help.cpp')
| -rw-r--r-- | editor/editor_help.cpp | 7 | 
1 files changed, 3 insertions, 4 deletions
diff --git a/editor/editor_help.cpp b/editor/editor_help.cpp index b49c2d26d0..65e50560bc 100644 --- a/editor/editor_help.cpp +++ b/editor/editor_help.cpp @@ -1280,11 +1280,10 @@ Error EditorHelp::_goto_desc(const String &p_class, int p_vscr) {  		class_desc->add_newline();  		//	class_desc->add_newline(); -		Vector<String> tutorials = cd.tutorials.split_spaces(); -		if (tutorials.size() != 0) { +		if (cd.tutorials.size() != 0) { -			for (int i = 0; i < tutorials.size(); i++) { -				String link = tutorials[i]; +			for (int i = 0; i < cd.tutorials.size(); i++) { +				String link = cd.tutorials[i];  				String linktxt = link;  				int seppos = linktxt.find("//");  				if (seppos != -1) {  |