Merge pull request #22171 from DualMatrix/empty_boi_WTF_WHY

Fixed empty item slipping into Search Classes dialog
This commit is contained in:
Rémi Verschelde 2018-09-20 15:03:13 +02:00 committed by GitHub
commit 48ace81d7b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -752,6 +752,8 @@ Error EditorHelp::_goto_desc(const String &p_class, int p_vscr) {
}
void EditorHelp::_update_doc() {
if (!doc->class_list.has(edited_class))
return;
scroll_locked = true;