View Single Post
Guest | Posts: n/a | Thanked: 0 times | Joined on
#8
The solution to this:

Code:
set 
Gtk.TreeViewColumn('title', renderer, text=1)
to
Gtk.TreeViewColumn('title', renderer, markup=1)
and make sure the string you're appending is escaped (import cgi, cgi.escape) for bad characters.

Thanks!
 

The Following 3 Users Say Thank You to For This Useful Post: