re: gtk_main_iteration() exits app first time through

2009-01-07 Thread Garth's KidStuff
Hey All, It was my app bug. We'd added a new polling loop activated by a timer but during the gtk_main_iteration the program state wasn't correct for the new code. No worries! -- Garth Upshaw Garth's KidStuff ___ gtk-app-devel-list mailing list gtk-a

gtk_main_iteration() exits app first time through

2009-01-06 Thread Garth's KidStuff
Hey All, Some months ago, I asked how to make a modeless dialog (a progress dialog) appear while continuing to execute in the main thread. Someone (thanks!) suggested using while (gtk_events_pending()) gtk_main_iteration(); to make sure the new dialog gets shown. I implemented that