On Fri, May 07, 2004 at 03:27:33PM +0200, Igor Stroh wrote: > treeview.scroll_to_cell(path, col, gtk.TRUE, 0.5, 0)
Try putting the scroll_to_cell in a idle_add call: gtk.idle_add(treeview.scroll_to_cell, path, col, gtk.TRUE, 0.5, 0) Dave Cook _______________________________________________ pygtk mailing list [EMAIL PROTECTED] http://www.daa.com.au/mailman/listinfo/pygtk Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/
