Changes between Initial Version and Version 1 of Ticket #44794
- Timestamp:
- Aug 27, 2014, 2:13:48 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #44794
- Property Owner changed from macports-tickets@… to cal@…
- Property Port gtk3 added; GTK3 removed
-
Property
Summary
changed from
refresh window doesn't work anymore
togtk3: refresh window doesn't work anymore
-
Ticket #44794 – Description
initial v1 1 1 in GKT2 I used : 2 {{{ 2 3 while (gtk_events_pending ()) 3 4 gtk_main_iteration (); 4 to refresh a window 5 }}} 6 to refresh a window [[br]] 5 7 in GTK3 this works only with an this not perfect 8 {{{ 6 9 usleep (25000); 7 10 while (gtk_events_pending ()) 8 11 gtk_main_iteration (); 9 12 }}} 10 13 example added