Merge pull request #62816 from akien-mga/feature-list-comma-fix

This commit is contained in:
Rémi Verschelde 2022-07-07 16:29:59 +02:00 committed by GitHub
commit 664d8cd8ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions

View File

@ -366,16 +366,17 @@ void ProjectExportDialog::_update_feature_list() {
}
custom_feature_display->clear();
String text;
bool first = true;
for (const String &E : fset) {
String f = E;
if (!first) {
f += ", ";
text += ", ";
} else {
first = false;
}
custom_feature_display->add_text(f);
text += E;
}
custom_feature_display->add_text(text);
}
void ProjectExportDialog::_custom_features_changed(const String &p_text) {