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)
Thanks for your replies guys, the problem was my own code: I accidently
doubled all entries of the appropriate TreeStore before calling scroll_to_cell()...
Regards, Igor _______________________________________________ pygtk mailing list [EMAIL PROTECTED] http://www.daa.com.au/mailman/listinfo/pygtk Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/
