Changes between Initial Version and Version 1 of Ticket #44794


Ignore:
Timestamp:
Aug 27, 2014, 2:13:48 PM (10 years ago)
Author:
ryandesign (Ryan Carsten Schmidt)
Comment:

This does not sound like a MacPorts-specific issue. Have you already spoken with the developers of gtk about this?

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 to gtk3: refresh window doesn't work anymore
  • Ticket #44794 – Description

    initial v1  
    11in GKT2 I used :
     2{{{
    23        while (gtk_events_pending ())
    34                gtk_main_iteration ();
    4 to refresh a window
     5}}}
     6to refresh a window [[br]]
    57in GTK3 this works only with an this not perfect
     8{{{
    69        usleep (25000);
    710        while (gtk_events_pending ())
    811                gtk_main_iteration ();
    9 
     12}}}
    1013example added