Make import defaults inspector honor property style settings

This commit is contained in:
Haoyu Qiu 2022-05-06 22:24:51 +08:00 committed by Relintai
parent 18bb8e671a
commit afc9407ae0

View File

@ -90,10 +90,15 @@ protected:
};
void ImportDefaultsEditor::_notification(int p_what) {
if (p_what == NOTIFICATION_PREDELETE) {
if (inspector) {
switch (p_what) {
case NOTIFICATION_ENTER_TREE:
case EditorSettings::NOTIFICATION_EDITOR_SETTINGS_CHANGED: {
inspector->set_property_name_style(EditorPropertyNameProcessor::get_settings_style());
} break;
case NOTIFICATION_PREDELETE: {
inspector->edit(nullptr);
}
} break;
}
}