Fallback to line_percent highlighting for gradient segment

This commit is contained in:
Kim Silkebækken 2012-12-21 11:20:19 +01:00
parent 9f60daaf78
commit d87b35d094
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ def line_percent(gradient=False):
return {
'contents': percentage,
'highlight': 'line_percent_gradient' + str(int(5 * percentage // 100) + 1),
'highlight': ['line_percent_gradient' + str(int(5 * percentage // 100) + 1), 'line_percent'],
}