Fix #117956: Revert Last Chance Placeholder Default #117962

Merged
Harley Acheson merged 1 commits from Harley/blender:fix117956 into blender-v4.1-release 2024-02-07 21:19:36 +01:00
1 changed files with 0 additions and 3 deletions

View File

@ -5863,9 +5863,6 @@ const char *ui_but_placeholder_get(uiBut *but)
else if (type && !STREQ(RNA_struct_identifier(type), "UnknownType")) {
placeholder = RNA_struct_ui_name(type);
}
else {
placeholder = RNA_property_ui_name(but->rnaprop);
}
}
else if (but->type == UI_BTYPE_TEXT && but->icon == ICON_VIEWZOOM) {
placeholder = CTX_IFACE_(BLT_I18NCONTEXT_ID_WINDOWMANAGER, "Search");