I'm using PyGObject with GTK 3.22.25. I've built a UI in Glade and am loading it using Gtk.Builder
. My UI includes a Gtk.TreeView
with Gtk.TreeViewColumn
children, each with a Gtk.CellRendererText
renderer. One of these is called 'inventory_stock_cell
'.
I can look up the cell renderers on the Builder
object with eg. builder.get_object('inventory_stock_cell')
but if I try to iterate over the objects in the builder with builder.get_objects()
the cell renderers are not included in the objects returned.
Am I doing something wrong? Is this deliberate? A bug?