changed filter color back to orange from gold (urine)

This commit is contained in:
Manuel Simon Hirsig
2016-10-02 23:48:32 +02:00
parent 010f02703b
commit 094ea8640b
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -214,7 +214,7 @@ function public.formatted_post_filter(components)
end
no_line_break = component[1] == 'operator' and component[2] == 'not'
local filter_color = (filter_builder_state.selected == i and color.orange or color.aux)
local filter_color = (filter_builder_state.selected == i and color.aux or color.orange)
local component_text = filter_color(component[2])
if component[1] == 'operator' and component[2] ~= 'not' then
component_text = component_text .. filter_color(tonumber(component[3]) or '')
+2 -2
View File
@@ -461,10 +461,10 @@ function private.prettified_filter_string(filter)
prettified.append(color.blizzard(component[3]))
end
elseif component[1] == 'operator' then
prettified.append(color.aux(component[2] .. (component[2] ~= 'not' and tonumber(component[3]) or '')))
prettified.append(color.orange(component[2] .. (component[2] ~= 'not' and tonumber(component[3]) or '')))
elseif component[1] == 'filter' then
if component[2] ~= 'tooltip' then
prettified.append(color.aux(component[2]))
prettified.append(color.orange(component[2]))
end
for parameter in present(component[3]) do
if component[2] == 'item' then