mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Improve error when update_doc() fails
This commit is contained in:
parent
4d1f26e1fd
commit
c3b4c823da
1 changed files with 1 additions and 1 deletions
|
@ -3733,7 +3733,7 @@ bool ScriptEditor::_help_tab_goto(const String &p_name, const String &p_desc) {
|
|||
}
|
||||
|
||||
void ScriptEditor::update_doc(const String &p_name) {
|
||||
ERR_FAIL_COND(!EditorHelp::has_doc(p_name));
|
||||
ERR_FAIL_COND_MSG(!EditorHelp::has_doc(p_name), vformat("Can't update documentation for \"%s\".", p_name));
|
||||
|
||||
for (int i = 0; i < tab_container->get_tab_count(); i++) {
|
||||
EditorHelp *eh = Object::cast_to<EditorHelp>(tab_container->get_tab_control(i));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue