UI: Fix Placeholder Bad String Comparison #113706

Merged
Harley Acheson merged 1 commits from Harley/blender:PlaceholderCmp into main 2023-10-14 01:42:55 +02:00
1 changed files with 1 additions and 1 deletions

View File

@ -5929,7 +5929,7 @@ const char *ui_but_placeholder_get(uiBut *but)
RNA_enum_name(rna_enum_id_type_items, idcode, &placeholder);
placeholder = CTX_IFACE_(BLT_I18NCONTEXT_ID_ID, placeholder);
}
else if (type && RNA_struct_identifier(type) != "UnknownType") {
else if (type && !STREQ(RNA_struct_identifier(type), "UnknownType")) {
placeholder = RNA_struct_ui_name(type);
}
}