Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorPablo Vazquez <venomgfx@gmail.com>2018-10-01 16:25:11 +0300
committerPablo Vazquez <venomgfx@gmail.com>2018-10-01 16:28:47 +0300
commit832f5d36e53ed9ab8c167c8a43e8d948c1771e42 (patch)
treebb9242f76c8d229530c92aeeb3522e087a3363ce /source
parent212ce03aafcbdb255b3d3e87262bbc29b9614898 (diff)
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.
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/interface/interface_widgets.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/interface/interface_widgets.c b/source/blender/editors/interface/interface_widgets.c
index 41e4ee5c1b6..1c765f0ee32 100644
--- a/source/blender/editors/interface/interface_widgets.c
+++ b/source/blender/editors/interface/interface_widgets.c
@@ -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);