Have you tried forcing the main run loop to execute?  i.e.:

    while (gtk_events_pending())
        gtk_main_iteration();


> I am writing a simple application with GTK+, I updated the text view
area with the text using "gtk_text_buffer_insert" function.
I am wondering why the new text was not displayed immediately on the
text view right after the line: gtk_text_buffer_insert (..., "new
text"); ?

The new text was displayed after the application has finished other
statements like: copying a big file...?

Could anyone point me out how can I display the new text value
immediately when the gtk_text_buffer_insert() function is called?
Thanks,
Soulivanh

-- 
Garth Upshaw
Garth's KidStuff
_______________________________________________
gtk-app-devel-list mailing list
gtk-app-devel-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Reply via email to