Merge pull request #32846 from Chaosus/fix_doc_color

Fix incorrect coloring of in-editor documentation when theme changed
This commit is contained in:
Rémi Verschelde 2019-10-22 12:00:00 +02:00 committed by GitHub
commit a2871cc06b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1467,6 +1467,10 @@ void EditorHelp::_notification(int p_what) {
_update_doc();
} break;
case NOTIFICATION_THEME_CHANGED: {
_class_desc_resized();
} break;
default: break;
}
}