Fix error converting color into string
This commit is contained in:
parent
f5598a2c0f
commit
88743af243
@ -254,9 +254,9 @@ def gdk_color_to_str(color):
|
||||
"""
|
||||
Convert a Gdk.Color into a #rrggbb string.
|
||||
"""
|
||||
color_str = "#%02x%02x%02x" % (color.red * 255,
|
||||
color.green * 255,
|
||||
color.blue * 255)
|
||||
color_str = "#%02x%02x%02x" % (int(color.red * 255),
|
||||
int(color.green * 255),
|
||||
int(color.blue * 255))
|
||||
return color_str
|
||||
|
||||
def get_colors(obj, state):
|
||||
|
Loading…
Reference in New Issue
Block a user