Reputation: 2342
I want to have a cell boundary like this:
But what Gtk Treeview gives me is this:
Is there any way I can achieve this in Gtk3 Python ?
Upvotes: 2
Views: 373
Reputation: 4104
You can use the TreeView set_grid_lines
method set as both.
Example:
treeview.set_grid_lines(Gtk.TreeViewGridLines.BOTH)
Upvotes: 2