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
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