UI: Color the inside of pie menu items when selected

Follows the same as other selected/active items in the UI.
Tested in Default theme, 2.7x, 2.4x, Flatty Light and Amaranth
all seem to work fine.
This commit is contained in:
Pablo Vazquez 2018-10-01 15:25:11 +02:00
parent 212ce03aaf
commit 832f5d36e5
1 changed files with 1 additions and 1 deletions

View File

@ -2359,7 +2359,7 @@ static void widget_state_pie_menu_item(uiWidgetType *wt, int state)
}
if (state & UI_SELECT) {
copy_v4_v4_char(wt->wcol.outline, wt->wcol.inner_sel);
copy_v4_v4_char(wt->wcol.inner, wt->wcol.inner_sel);
}
else if (state & UI_ACTIVE) {
copy_v4_v4_char(wt->wcol.inner, wt->wcol.item);