Fix incorrect coloring of in-editor documentation when theme changed

This commit is contained in:
Yuri Roubinsky 2019-10-15 09:54:28 +03:00
parent 48d3458f74
commit c1bd94c2a4

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;
}
}