Fix error converting color into string

This commit is contained in:
Nick Hall 2015-10-09 17:47:03 +01:00
parent f5598a2c0f
commit 88743af243

View File

@ -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):