Fixed color distortion
This commit is contained in:
parent
b8d935731e
commit
ffe246e292
1 changed files with 1 additions and 2 deletions
|
@ -25,8 +25,7 @@ def mwm_encode_color(colors, st, prefix='', default='black'):
|
|||
if prefix:
|
||||
prefix += "-"
|
||||
opacity = hex(255 - int(255 * float(st.get(prefix + "opacity", 1))))
|
||||
color = whatever_to_hex(st.get(prefix + 'color', default))
|
||||
color = color[1] + color[1] + color[3] + color[3] + color[5] + color[5]
|
||||
color = whatever_to_hex(st.get(prefix + 'color', default))[1:]
|
||||
result = int(opacity + color, 16)
|
||||
colors.add(result)
|
||||
return result
|
||||
|
|
Loading…
Add table
Reference in a new issue