Try menu_* colors before regular normal/focus (#949)
This commit is contained in:
parent
547fec2824
commit
8ff60f034f
|
@ -102,9 +102,9 @@ end
|
||||||
-- @return item name, item background color, background image, item icon.
|
-- @return item name, item background color, background image, item icon.
|
||||||
local function label(o)
|
local function label(o)
|
||||||
if o.focused then
|
if o.focused then
|
||||||
return colortext(o.name, theme.fg_focus), theme.bg_focus, nil, o.icon
|
return colortext(o.name, (theme.menu_fg_focus or theme.fg_focus)), (theme.menu_bg_focus or theme.bg_focus), nil, o.icon
|
||||||
else
|
else
|
||||||
return o.name, theme.bg_normal, nil, o.icon
|
return o.name, (theme.menu_bg_normal or theme.bg_normal), nil, o.icon
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue