Hi, I force dillo to browse to a new page based on some external event; the code is as follows [with text containing the url to goto] <snip> gchar* new_text = a_Url_string_strip_delimiters((gchar*)text); DilloUrl* url = a_Url_new(new_text, NULL, 0, 0); if (url) { a_Nav_push(transfer_bw,url); a_Url_free(url); } </snip> however i notice that the though the browser DOES goto the new url the screen [browser window] doesn't get painted properly. i seem to have to scroll up and down a couple of times to get it to repaint completely. Any idea why this would be ? [I don't know if this is related but the url's dillo is forced to goto are served typically by a tomcat servlet engine] Thanks, Vikram