[Font Inspector Plugin] Hide "Add Feature" button if supported feature list is empty.

This commit is contained in:
bruvzg
2022-09-22 08:20:40 +03:00
parent e5c544750c
commit 4351af30c8
2 changed files with 11 additions and 0 deletions

View File

@ -622,6 +622,16 @@ void EditorPropertyOTFeatures::update_property() {
supported = fd->get_supported_feature_list();
}
if (supported.is_empty()) {
edit->set_text(vformat(TTR("No supported features")));
if (container) {
set_bottom_editor(nullptr);
memdelete(container);
button_add = nullptr;
container = nullptr;
}
return;
}
edit->set_text(vformat(TTR("Features (%d of %d set)"), dict.size(), supported.size()));
bool unfolded = get_edited_object()->editor_is_section_unfolded(get_edited_property());