You really shouldn't set private data manually like this.  The
jump signal is much better.

Matt

On Thu, Dec 16, 1999 at 06:18:34PM -0600, Daniel Kornhauser wrote:
> I think this C function does the trick but I haven't found a way to do it
> in python :-(.
> 
> void 
>    gtk_clist_set_focus_row(GtkCList *list, guint row) 
>    { 
>        g_return_if_fail(list != NULL); 
>        g_return_if_fail(row >= 0); 
>        g_return_if_fail(row < list->rows); 
> 
>        list->focus_row = row; 
>    } 
> 
> Hope this helps, I you find a good way to focus row in CList I would be
> happy to hear about it!!!
To unsubscribe: echo "unsubscribe" | mail [EMAIL PROTECTED]

Reply via email to