WIP: uv-simple-select #1

Closed
Chris Blackbourn wants to merge 182 commits from uv-simple-select into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
Showing only changes of commit 297d2b5fa1 - Show all commits

View File

@ -4585,7 +4585,15 @@ static uiBut *ui_def_but_rna(uiBlock *block,
#endif #endif
} }
icon = item[i].icon; /* #ICON_BLANK1 can be used to add padding of the size of an icon. This is fine to align
* multiple items within a menu, but not for the menu button that only shows the label then.
*/
if ((type == UI_BTYPE_MENU) && (item[i].icon == ICON_BLANK1)) {
icon = ICON_NONE;
}
else {
icon = item[i].icon;
}
} }
else { else {
if (!str) { if (!str) {