Hi I setup a model column in python as:
color = Gdk.RGBA()
color.parse("rgba(170,60,60,0.6)")
item["color"] = color
And use in a treeview cell. It show well the color.
Anyway when I want to get the model RGBA later I get:
color.to_string()
ON set:
Gdk.RGBA(red=0.666667, green=0.235294, blue=0.235294, alpha=0.600000)
ON retrive:
Gdk.RGBA(red=0.000000, green=0.000000, blue=0.235294, alpha=0.600000)
Thanks in advance for get into.