removed color coding of trend alltogether

This commit is contained in:
Manuel Simon Hirsig
2016-01-19 09:58:49 +01:00
parent 2e35eff687
commit e3c9be4387
+2 -2
View File
@@ -53,9 +53,9 @@ function Aux_OnLoad()
else
market_value_line = 'Market Value: '..Aux.util.money_string(market_value * count)..' / '..Aux.util.money_string(market_value)
if trend_percentage > 0 then
market_value_line = market_value_line..' ('..RED_FONT_COLOR_CODE..'+'..trend_percentage..'%'..FONT_COLOR_CODE_CLOSE..')'
market_value_line = market_value_line..' (+'..trend_percentage..'%)'
elseif trend_percentage < 0 then
market_value_line = market_value_line..' ('..GREEN_FONT_COLOR_CODE..trend_percentage..'%'..FONT_COLOR_CODE_CLOSE..')'
market_value_line = market_value_line..' ('..trend_percentage..'%)'
end
end
EnhTooltip.AddLine(market_value_line, nil, true)