When I run the following line in gdb :
gtk_tree_view_column_set_attributes (column, renderer,
"active", EV_DOCUMENT_LAYERS_COLUMN_VISIBLE,
"activatable", EV_DOCUMENT_LAYERS_COLUMN_ENABLED,
"visible", EV_DOCUMENT_LAYERS_COLUMN_SHOWTOGGLE,
"sensitive", EV_DOCUMENT_LAYERS_COLUMN_ENABLED,
NULL);
I get the warning below:
GLib-GObject-WARNING **: gsignal.c:2461: signal 'active' is invalid for instance '0xabe8b0' of type 'GimpCellRendererToggle'
I checked out the GimpCellRendererToggle's attribute values and "active" is one of them. I dont understand what is causing the warning. Also, I'm new here so I'm not sure if I'm on the right track for solving the bug. Any guidance on the matter would be appreciated :)
Regards
Eejya