rising amount of colors so it matches input of 8bits

https://github.com/ynput/OpenPype/pull/5944#discussion_r1404641936
This commit is contained in:
Jakub Jezek 2023-11-27 16:03:09 +01:00
parent 6b02f779b3
commit 8cf109340b
No known key found for this signature in database
GPG key ID: 730D7C02726179A7

View file

@ -1395,7 +1395,7 @@ def convert_color_values(application, color_value):
blue = float(blue / 255)
alpha = float(alpha / 255)
return "{0:.2f},{1:.2f},{2:.2f},{3:.2f}".format(
return "{0:.3f},{1:.3f},{2:.3f},{3:.3f}".format(
red, green, blue, alpha)
else:
raise ValueError(